Fix database scheme comments that got clobbered on nullptr conversion

This commit is contained in:
Michael Cook (mackal)
2013-11-11 15:37:20 -05:00
parent 2be71fc2ec
commit 925e19b15c
6 changed files with 82 additions and 82 deletions
+5 -5
View File
@@ -74,11 +74,11 @@ To use ptimers, you need to create the table below in your DB:
Schema:
CREATE TABLE timers (
char_id INT(11) NOT nullptr,
type MEDIUMINT UNSIGNED NOT nullptr,
start INT UNSIGNED NOT nullptr,
duration INT UNSIGNED NOT nullptr,
enable TINYINT NOT nullptr,
char_id INT(11) NOT NULL,
type MEDIUMINT UNSIGNED NOT NULL,
start INT UNSIGNED NOT NULL,
duration INT UNSIGNED NOT NULL,
enable TINYINT NOT NULL,
PRIMARY KEY(char_id, type)
);