summaryrefslogtreecommitdiffstats
path: root/upgrades/dbpatches/1.3/mysql/patch/node_cksum.sql
diff options
context:
space:
mode:
Diffstat (limited to 'upgrades/dbpatches/1.3/mysql/patch/node_cksum.sql')
-rw-r--r--upgrades/dbpatches/1.3/mysql/patch/node_cksum.sql11
1 files changed, 0 insertions, 11 deletions
diff --git a/upgrades/dbpatches/1.3/mysql/patch/node_cksum.sql b/upgrades/dbpatches/1.3/mysql/patch/node_cksum.sql
deleted file mode 100644
index 6e8752a7..00000000
--- a/upgrades/dbpatches/1.3/mysql/patch/node_cksum.sql
+++ /dev/null
@@ -1,11 +0,0 @@
-CREATE TABLE node_cksum (
- cksumid bigint unsigned DEFAULT '0' NOT NULL,
- nodeid bigint unsigned DEFAULT '0' NOT NULL,
- tablename varchar(64) DEFAULT '' NOT NULL,
- fieldname varchar(64) DEFAULT '' NOT NULL,
- recordid bigint unsigned DEFAULT '0' NOT NULL,
- cksumtype integer DEFAULT '0' NOT NULL,
- cksum char(32) DEFAULT '' NOT NULL,
- PRIMARY KEY (cksumid)
-) ENGINE=InnoDB;
-CREATE INDEX node_cksum_cksum_1 on node_cksum (nodeid,tablename,fieldname,recordid,cksumtype);