summaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
Diffstat (limited to 'schema')
-rw-r--r--schema/migrations/0008.sql2
-rw-r--r--schema/mysql.sql1
-rw-r--r--schema/sqlite.sql1
3 files changed, 2 insertions, 2 deletions
diff --git a/schema/migrations/0008.sql b/schema/migrations/0008.sql
new file mode 100644
index 0000000..dcd9dd1
--- /dev/null
+++ b/schema/migrations/0008.sql
@@ -0,0 +1,2 @@
+ALTER TABLE users
+DROP COLUMN instagram_access_token;
diff --git a/schema/mysql.sql b/schema/mysql.sql
index 1007256..681df54 100644
--- a/schema/mysql.sql
+++ b/schema/mysql.sql
@@ -21,7 +21,6 @@ CREATE TABLE `users` (
`twitter_access_token` text,
`twitter_token_secret` text,
`twitter_username` varchar(255) DEFAULT NULL,
- `instagram_access_token` text,
`email_username` varchar(255) DEFAULT NULL,
`default_timezone` varchar(255) DEFAULT NULL,
`supported_post_types` longtext,
diff --git a/schema/sqlite.sql b/schema/sqlite.sql
index 37365cd..3656a72 100644
--- a/schema/sqlite.sql
+++ b/schema/sqlite.sql
@@ -21,7 +21,6 @@ CREATE TABLE users (
twitter_access_token TEXT,
twitter_token_secret TEXT,
twitter_username TEXT,
- instagram_access_token TEXT,
email_username TEXT,
default_timezone TEXT,
supported_post_types TEXT,