From 51e118d3cf848ca9d8834baaeb0aa3808a039e00 Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Sat, 13 Feb 2021 16:56:04 +0100 Subject: [PATCH] Applied migration successfully --- docs/migration.sql | 30 +----------------------------- 1 file changed, 1 insertion(+), 29 deletions(-) diff --git a/docs/migration.sql b/docs/migration.sql index d6abfde..105f2e9 100644 --- a/docs/migration.sql +++ b/docs/migration.sql @@ -1,29 +1 @@ --- Remove deprecated tables -DROP TABLE IF EXISTS `comunic_api_limit_count`; -DROP TABLE IF EXISTS `comunic_api_users_tokens`; -DROP TABLE IF EXISTS `comunic_api_services_tokens`; -DROP TABLE IF EXISTS `comunic_calls_members`; -DROP TABLE IF EXISTS `comunic_calls`; - -CREATE TABLE `comunic_clients` ( - `id` INT NOT NULL AUTO_INCREMENT, - `name` VARCHAR(45) NOT NULL, - `domain` VARCHAR(45) NULL COMMENT 'Use to check Referer & define Access-Control-Allow-Origin', - `comment` VARCHAR(45) NULL COMMENT 'Information about the client', - `default_expiration_time` INT DEFAULT 2592000 COMMENT '2592000 = 1 month', - PRIMARY KEY (`ID`)); - -CREATE TABLE `comunic_user_access_tokens` ( - `id` INT NOT NULL AUTO_INCREMENT, - `client_id` INT NOT NULL, - `user_id` INT NOT NULL, - `token` VARCHAR(255) NOT NULL, - `last_refresh` INT NOT NULL, - `timeout` INT NOT NULL, - PRIMARY KEY (`id`)); - --- Insert official API clients -INSERT INTO comunic_clients (name, domain) VALUES ('ComunicWEB', "communiquons.org"); -INSERT INTO comunic_clients (name) VALUES ('ComunicAndroid'); -INSERT INTO comunic_clients (name) VALUES ('ComunicFlutter'); -INSERT INTO comunic_clients (name) VALUES ('ComunicWatcher'); \ No newline at end of file +-- Nothing yet \ No newline at end of file