diff options
Diffstat (limited to 'updates')
-rw-r--r-- | updates/2.00-to-x.xx.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/updates/2.00-to-x.xx.sql b/updates/2.00-to-x.xx.sql index 88a7ed12f..27c2fec54 100644 --- a/updates/2.00-to-x.xx.sql +++ b/updates/2.00-to-x.xx.sql @@ -325,3 +325,10 @@ CREATE TABLE blog ( body text NOT NULL, PRIMARY KEY (lid) ); + +#13/06/01 +ALTER TABLE site CHANGE title name varchar(128) DEFAULT '' NOT NULL; +ALTER TABLE site CHANGE url link varchar(255) DEFAULT '' NOT NULL; +ALTER TABLE site ADD feed varchar(255) DEFAULT '' NOT NULL; + + |