This commit is contained in:
Calvin Montgomery 2017-03-26 11:13:10 -07:00
parent 0ce6fbba20
commit 5bdf8b4aaf
2 changed files with 8 additions and 2 deletions

View file

@ -2,7 +2,7 @@
"author": "Calvin Montgomery",
"name": "CyTube",
"description": "Online media synchronizer and chat",
"version": "3.34.7",
"version": "3.34.8",
"repository": {
"url": "http://github.com/calzoneman/sync"
},

View file

@ -20,7 +20,13 @@ const TBL_CHANNELS = "" +
"`name` VARCHAR(30) NOT NULL," +
"`owner` VARCHAR(20) NOT NULL," +
"`time` BIGINT NOT NULL," +
"PRIMARY KEY (`id`), UNIQUE(`name`), INDEX(`owner`))" +
"`last_loaded` TIMESTAMP NOT NULL DEFAULT 0," +
"`owner_last_seen` TIMESTAMP NOT NULL DEFAULT 0," +
"PRIMARY KEY (`id`)," +
"UNIQUE(`name`)," +
"INDEX(`owner`)," +
"INDEX(`last_loaded`)," +
"INDEX(`owner_last_seen`)) " +
"CHARACTER SET utf8";
const TBL_GLOBAL_BANS = "" +