Skip to content
Snippets Groups Projects
Commit d289719e authored by HorridoJoho's avatar HorridoJoho
Browse files

Added IF NOT EXISTS to custom buffer sql scripts.

Avoids problems with l2j-server-cli.
parent 073eb8c0
No related branches found
No related tags found
No related merge requests found
CREATE TABLE `custom_buffer_service_ulists` (
CREATE TABLE IF NOT EXISTS `custom_buffer_service_ulists` (
`ulist_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`ulist_char_id` int(10) unsigned NOT NULL,
`ulist_name` varchar(255) NOT NULL,
......
CREATE TABLE `custom_buffer_service_ulist_buffs` (
CREATE TABLE IF NOT EXISTS `custom_buffer_service_ulist_buffs` (
`ulist_id` int(10) unsigned NOT NULL,
`ulist_buff_ident` varchar(255) NOT NULL,
PRIMARY KEY (`ulist_id`,`ulist_buff_ident`),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment