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:
parent
d43736c550
commit
0002d0c1aa
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue