Aaron Parecki
5 years ago
No known key found for this signature in database
GPG Key ID: 276C2817346D6056
3 changed files with
2 additions and
2 deletions
-
schema/migrations/0010.sql
-
schema/mysql.sql
-
schema/sqlite.sql
|
|
@ -0,0 +1,2 @@ |
|
|
|
ALTER TABLE users |
|
|
|
DROP COLUMN facebook_access_token; |
|
|
@ -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, |
|
|
|
|
|
@ -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, |
|
|
|