change foreign_user.id to bigint (for Twitter, Facebook, etc.)

This commit is contained in:
Evan Prodromou
2009-06-24 14:44:02 -07:00
parent 07486089d8
commit 83407cc3ca
2 changed files with 11 additions and 13 deletions

View File

@@ -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',