diff options
Diffstat (limited to 'upgrades/dbpatches/1.3/mysql/patch/media.sql')
-rw-r--r-- | upgrades/dbpatches/1.3/mysql/patch/media.sql | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/upgrades/dbpatches/1.3/mysql/patch/media.sql b/upgrades/dbpatches/1.3/mysql/patch/media.sql new file mode 100644 index 00000000..9824f68b --- /dev/null +++ b/upgrades/dbpatches/1.3/mysql/patch/media.sql @@ -0,0 +1,16 @@ +CREATE TABLE media_tmp ( + mediaid bigint unsigned DEFAULT '0' NOT NULL, + userid bigint unsigned DEFAULT '0' NOT NULL, + mediatypeid bigint unsigned DEFAULT '0' NOT NULL, + sendto varchar(100) DEFAULT '' NOT NULL, + active integer DEFAULT '0' NOT NULL, + severity integer DEFAULT '63' NOT NULL, + period varchar(100) DEFAULT '1-7,00:00-23:59' NOT NULL, + PRIMARY KEY (mediaid) +); +CREATE INDEX media_1 on media_tmp (userid); +CREATE INDEX media_2 on media_tmp (mediatypeid); + +insert into media_tmp select * from media; +drop table media; +alter table media_tmp rename media; |