disKret 19 жил өмнө
parent
commit
f05d759b48

+ 1 - 2
datapack_development/sql/games.sql

@@ -1,8 +1,7 @@
 -- ---------------------------
 -- Table structure for games
 -- ---------------------------
-DROP TABLE IF EXISTS games;
-CREATE TABLE games (
+CREATE TABLE IF NOT EXISTS games (
   id INT NOT NULL default 0,
   idnr INT NOT NULL default 0,
   number1 INT NOT NULL default 0,

+ 1 - 1
datapack_development/sql/topic.sql

@@ -10,4 +10,4 @@ CREATE TABLE IF NOT EXISTS `topic` (
   `topic_ownerid` int(8) NOT NULL default '0',
   `topic_type` int(8) NOT NULL default '0',
   `topic_reply` int(8) NOT NULL default '0'
-) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+) ENGINE=MyISAM;