summaryrefslogtreecommitdiffstats
path: root/upgrades/dbpatches/1.3/mysql/1.1/sysmaps.sql
diff options
context:
space:
mode:
Diffstat (limited to 'upgrades/dbpatches/1.3/mysql/1.1/sysmaps.sql')
-rw-r--r--upgrades/dbpatches/1.3/mysql/1.1/sysmaps.sql11
1 files changed, 11 insertions, 0 deletions
diff --git a/upgrades/dbpatches/1.3/mysql/1.1/sysmaps.sql b/upgrades/dbpatches/1.3/mysql/1.1/sysmaps.sql
new file mode 100644
index 00000000..17f7c258
--- /dev/null
+++ b/upgrades/dbpatches/1.3/mysql/1.1/sysmaps.sql
@@ -0,0 +1,11 @@
+CREATE TABLE sysmaps (
+ sysmapid int(4) NOT NULL auto_increment,
+ name varchar(128) DEFAULT '' NOT NULL,
+ width int(4) DEFAULT '0' NOT NULL,
+ height int(4) DEFAULT '0' NOT NULL,
+ background varchar(64) DEFAULT '' NOT NULL,
+ label_type int(4) DEFAULT '0' NOT NULL,
+ label_location int(1) DEFAULT '0' NOT NULL,
+ PRIMARY KEY (sysmapid),
+ UNIQUE (name)
+) type=InnoDB;