diff options
author | Matthew Somerville <matthew@mysociety.org> | 2015-12-04 15:34:18 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2016-01-22 16:58:04 +0000 |
commit | 61573768a8bd0a9f6c3ec69d405f153121e07563 (patch) | |
tree | 04d81310769bcbc0b17eb7667520637ffc8b35b7 /db/schema_0039-social-login.sql | |
parent | 87903d2543e48654c18aa5036272a34266cbf72a (diff) |
Prerequisites (new modules, db, config).
Diffstat (limited to 'db/schema_0039-social-login.sql')
-rw-r--r-- | db/schema_0039-social-login.sql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/db/schema_0039-social-login.sql b/db/schema_0039-social-login.sql new file mode 100644 index 000000000..ae55d5655 --- /dev/null +++ b/db/schema_0039-social-login.sql @@ -0,0 +1,4 @@ +begin; +alter table users add column twitter_id bigint unique; +alter table users add column facebook_id bigint unique; +commit; |