Skip to content

Commit

Permalink
schema changes for storypickable and searchable
Browse files Browse the repository at this point in the history
  • Loading branch information
tvroom committed Oct 19, 2004
1 parent 52c1d0a commit 15566c3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions utils/convertDBto200406
Expand Up @@ -104,6 +104,8 @@ CREATE TABLE topics_new (
width SMALLINT UNSIGNED NOT NULL DEFAULT 0,
height SMALLINT UNSIGNED NOT NULL DEFAULT 0,
submittable ENUM('no', 'yes') DEFAULT 'yes' NOT NULL,
searchable ENUM('no', 'yes') DEFAULT 'yes' NOT NULL,
storypickable ENUM('no', 'yes') DEFAULT 'yes' NOT NULL,
PRIMARY KEY (tid)
) TYPE=InnoDB;
EOT
Expand Down Expand Up @@ -191,6 +193,8 @@ CREATE TABLE skins_new (
title VARCHAR(64) DEFAULT '' NOT NULL,
issue ENUM('no', 'yes') DEFAULT 'no' NOT NULL,
submittable ENUM('no', 'yes') DEFAULT 'yes' NOT NULL,
searchable ENUM('no', 'yes') DEFAULT 'yes' NOT NULL,
storypickable ENUM('no', 'yes') DEFAULT 'yes' NOT NULL,
url VARCHAR(255) DEFAULT '' NOT NULL,
hostname VARCHAR(128) DEFAULT '' NOT NULL,
cookiedomain VARCHAR(128) DEFAULT '' NOT NULL,
Expand Down

0 comments on commit 15566c3

Please sign in to comment.