]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - db/rc2torc3.sql
remove obsolete .sql files
[quix0rs-gnu-social.git] / db / rc2torc3.sql
diff --git a/db/rc2torc3.sql b/db/rc2torc3.sql
deleted file mode 100644 (file)
index 886b9ad..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-create table user_location_prefs (
-    user_id integer not null comment 'user who has the preference' references user (id),
-    share_location tinyint default 1 comment 'Whether to share location data',
-    created datetime not null comment 'date this record was created',
-    modified timestamp comment 'date this record was modified',
-
-    constraint primary key (user_id)
-) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
-
-create table inbox (
-
-    user_id integer not null comment 'user receiving the notice' references user (id),
-    notice_ids blob comment 'packed list of notice ids',
-
-    constraint primary key (user_id)
-
-) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;