Belzebul Posted February 15, 2010 Posted February 15, 2010 Hello guys, i want to insernt a sql buffer but there isnt a table with name "buff_templates". What can i do? Thank you.
0 down Posted February 16, 2010 Posted February 16, 2010 save it as .sql and execute in DB SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for buff_templates -- ---------------------------- CREATE TABLE `buff_templates` ( `id` int(11) unsigned NOT NULL, `name` varchar(35) NOT NULL DEFAULT '', `skill_id` int(10) unsigned NOT NULL, `skill_name` varchar(35) DEFAULT NULL, `skill_level` int(10) unsigned NOT NULL DEFAULT '1', `skill_force` int(1) NOT NULL DEFAULT '1', `skill_order` int(10) unsigned NOT NULL, `char_min_level` int(10) unsigned NOT NULL DEFAULT '0', `char_max_level` int(10) unsigned NOT NULL DEFAULT '0', `char_race` int(1) unsigned NOT NULL DEFAULT '0', `char_class` int(1) NOT NULL DEFAULT '0', `char_faction` int(10) unsigned NOT NULL DEFAULT '0', `price_adena` int(10) unsigned NOT NULL DEFAULT '0', `price_points` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`,`name`,`skill_order`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Records -- ----------------------------
0 Belzebul Posted February 16, 2010 Author Posted February 16, 2010 thanks a lot dude. problem solved ;)
Question
Belzebul
Hello guys,
i want to insernt a sql buffer but there isnt a table with name "buff_templates". What can i do?
Thank you.
2 answers to this question
Recommended Posts