1
0
Fork 0
mirror of https://github.com/Eggbertx/gochan.git synced 2025-08-02 15:06:23 -07:00

Fix the initial db setup SQL's "VARVARCHAR(45)"

This commit is contained in:
Darren VanBuren 2015-04-03 01:49:21 -07:00
parent d43736c550
commit 0002d0c1aa

View file

@ -52,7 +52,7 @@ CREATE TABLE `DBPREFIXboards` (
`default_style` VARCHAR(45) NOT NULL,
`locked` TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
`created_on` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`anonymous` VARVARCHAR(45) NOT NULL DEFAULT 'Anonymous',
`anonymous` VARCHAR(45) NOT NULL DEFAULT 'Anonymous',
`forced_anon` TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
`max_age` INT(20) UNSIGNED NOT NULL DEFAULT 0,
`autosage_after` INT(5) UNSIGNED NOT NULL DEFAULT 200,