update address standardization for cust_location changes
[freeside.git] / rt / etc / upgrade / 4.0.0rc2 / schema.mysql
diff --git a/rt/etc/upgrade/4.0.0rc2/schema.mysql b/rt/etc/upgrade/4.0.0rc2/schema.mysql
new file mode 100644 (file)
index 0000000..9431213
--- /dev/null
@@ -0,0 +1,10 @@
+
+DROP TABLE IF EXISTS sessions;
+
+CREATE TABLE sessions (
+    id char(32) NOT NULL,
+    a_session LONGBLOB,
+    LastUpdated TIMESTAMP,
+    PRIMARY KEY (id)
+) ENGINE=InnoDB CHARACTER SET ascii;
+