1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

post-push fix of fix for bug #16401 (field should be char not varchar)

WL#1034 (Internal CRON)
This commit is contained in:
andrey@lmy004.
2006-01-26 23:03:46 +01:00
parent d3af488e22
commit 204c566678
2 changed files with 21 additions and 21 deletions

View File

@@ -595,7 +595,7 @@ CREATE TABLE event (
ends DATETIME default NULL,
status ENUM('ENABLED','DISABLED') NOT NULL default 'ENABLED',
on_completion ENUM('DROP','PRESERVE') NOT NULL default 'DROP',
comment varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL default '',
comment char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL default '',
PRIMARY KEY (db,name)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT 'Events';