Fixes file_oembed to march mysql schema change that happened in commit 05e5122802

This commit is contained in:
Brenda Wallace 2009-07-22 21:28:47 +12:00
parent c34875421a
commit 6eaa91db1c
1 changed files with 1 additions and 2 deletions

View File

@ -464,8 +464,7 @@ create table file (
create sequence file_oembed_seq;
create table file_oembed (
id bigint default nextval('file_oembed_seq') primary key /* comment 'unique identifier' */,
file_id bigint unique,
file_id bigint default nextval('file_oembed_seq') primary key /* comment 'unique identifier' */,
version varchar(20),
type varchar(20),
provider varchar(50),