Browse Source

remove facebook access token column

pull/111/head
Aaron Parecki 4 years ago
parent
commit
dbaea0effa
No known key found for this signature in database GPG Key ID: 276C2817346D6056
3 changed files with 2 additions and 2 deletions
  1. +2
    -0
      schema/migrations/0010.sql
  2. +0
    -1
      schema/mysql.sql
  3. +0
    -1
      schema/sqlite.sql

+ 2
- 0
schema/migrations/0010.sql View File

@ -0,0 +1,2 @@
ALTER TABLE users
DROP COLUMN facebook_access_token;

+ 0
- 1
schema/mysql.sql View File

@ -17,7 +17,6 @@ CREATE TABLE `users` (
`last_micropub_response_date` datetime DEFAULT NULL, `last_micropub_response_date` datetime DEFAULT NULL,
`location_enabled` tinyint(4) NOT NULL DEFAULT '0', `location_enabled` tinyint(4) NOT NULL DEFAULT '0',
`syndication_targets` text, `syndication_targets` text,
`facebook_access_token` text,
`twitter_access_token` text, `twitter_access_token` text,
`twitter_token_secret` text, `twitter_token_secret` text,
`twitter_username` varchar(255) DEFAULT NULL, `twitter_username` varchar(255) DEFAULT NULL,

+ 0
- 1
schema/sqlite.sql View File

@ -17,7 +17,6 @@ CREATE TABLE users (
last_micropub_response_date datetime, last_micropub_response_date datetime,
location_enabled INTEGER NOT NULL default 0, location_enabled INTEGER NOT NULL default 0,
syndication_targets TEXT, syndication_targets TEXT,
facebook_access_token TEXT,
twitter_access_token TEXT, twitter_access_token TEXT,
twitter_token_secret TEXT, twitter_token_secret TEXT,
twitter_username TEXT, twitter_username TEXT,

Loading…
Cancel
Save