summaryrefslogtreecommitdiff
path: root/DB/ChangeLog.sql
diff options
context:
space:
mode:
authorMoritz helios Rudert <helios@planetcyborg.de>2011-06-01 12:13:39 +0200
committerMoritz helios Rudert <helios@planetcyborg.de>2011-06-01 12:13:39 +0200
commit75448045cfe70054c8f4bae1bcfaf9bb0f70d330 (patch)
tree6a4d3d35019cdf933c1816e8522dc5d2557f5238 /DB/ChangeLog.sql
parent12e0b0d809c29d435a247798d7318cc9835980ea (diff)
fixes
Diffstat (limited to 'DB/ChangeLog.sql')
-rw-r--r--[-rwxr-xr-x]DB/ChangeLog.sql6
1 files changed, 3 insertions, 3 deletions
diff --git a/DB/ChangeLog.sql b/DB/ChangeLog.sql
index 383c897a..bfb41cb5 100755..100644
--- a/DB/ChangeLog.sql
+++ b/DB/ChangeLog.sql
@@ -18,8 +18,8 @@
DROP TABLE IF EXISTS `ChangeLog`;
CREATE TABLE IF NOT EXISTS `ChangeLog` (
- `Time` timestamp(14) NOT NULL,
- `UID` int(11) NOT NULL default '0',
+ `Time` timestamp NOT NULL,
+ `UID` int(11) NOT NULL default 0,
`Commend` text NOT NULL,
`SQLCommad` text NOT NULL
-) TYPE=MyISAM;
+) ENGINE=MyISAM;