From dbaea0effa2812d7abe05ad8ff62ec95c7ca6d4c Mon Sep 17 00:00:00 2001 From: Aaron Parecki Date: Sat, 19 Oct 2019 22:13:12 +0100 Subject: [PATCH] remove facebook access token column --- schema/migrations/0010.sql | 2 ++ schema/mysql.sql | 1 - schema/sqlite.sql | 1 - 3 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 schema/migrations/0010.sql diff --git a/schema/migrations/0010.sql b/schema/migrations/0010.sql new file mode 100644 index 0000000..5bf0f43 --- /dev/null +++ b/schema/migrations/0010.sql @@ -0,0 +1,2 @@ +ALTER TABLE users +DROP COLUMN facebook_access_token; diff --git a/schema/mysql.sql b/schema/mysql.sql index 681df54..5a91e55 100644 --- a/schema/mysql.sql +++ b/schema/mysql.sql @@ -17,7 +17,6 @@ CREATE TABLE `users` ( `last_micropub_response_date` datetime DEFAULT NULL, `location_enabled` tinyint(4) NOT NULL DEFAULT '0', `syndication_targets` text, - `facebook_access_token` text, `twitter_access_token` text, `twitter_token_secret` text, `twitter_username` varchar(255) DEFAULT NULL, diff --git a/schema/sqlite.sql b/schema/sqlite.sql index 3656a72..ca495cd 100644 --- a/schema/sqlite.sql +++ b/schema/sqlite.sql @@ -17,7 +17,6 @@ CREATE TABLE users ( last_micropub_response_date datetime, location_enabled INTEGER NOT NULL default 0, syndication_targets TEXT, - facebook_access_token TEXT, twitter_access_token TEXT, twitter_token_secret TEXT, twitter_username TEXT,