summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-06-24 14:44:02 -0700
committerEvan Prodromou <evan@controlyourself.ca>2009-06-24 14:44:02 -0700
commit83407cc3caa2de0f5fd1b60d67357e415096b6ae (patch)
tree37b33b9af5bd20835fcf5936d3d4b52cea5a7f0f /db
parent07486089d8ce2e27e7bef9d536bd78e701103cab (diff)
change foreign_user.id to bigint (for Twitter, Facebook, etc.)
Diffstat (limited to 'db')
-rw-r--r--db/laconica.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/laconica.sql b/db/laconica.sql
index 95796d5cc..3f8918de6 100644
--- a/db/laconica.sql
+++ b/db/laconica.sql
@@ -277,7 +277,7 @@ create table foreign_service (
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
create table foreign_user (
- id int not null comment 'unique numeric key on foreign service',
+ id bigint not null comment 'unique numeric key on foreign service',
service int not null comment 'foreign key to service' references foreign_service(id),
uri varchar(255) not null unique key comment 'identifying URI',
nickname varchar(255) comment 'nickname on foreign service',