[Lxr-general] [PATCH 8/10] Whitespace cleanups for initdb-postgres.
Brought to you by:
ajlittoz
From: Jan-Benedict G. <jb...@lu...> - 2006-12-07 10:17:50
|
--- initdb-postgres | 14 ++++++-------- 1 files changed, 6 insertions(+), 8 deletions(-) diff --git a/initdb-postgres b/initdb-postgres index 89e84c5..7639414 100644 --- a/initdb-postgres +++ b/initdb-postgres @@ -19,7 +19,6 @@ create table lxr_files ( fileid int, primary key (fileid), unique (filename, revision) - ); create table lxr_symbols ( @@ -27,15 +26,14 @@ create table lxr_symbols ( symid int, primary key (symid), unique (symname) - ); create table lxr_declarations ( - declid smallint not null, + declid smallint not null, langid smallint not null, declaration char(255) not null, - primary key (declid, langid) -); + primary key (declid, langid) +); create table lxr_indexes ( symid int references lxr_symbols, @@ -44,10 +42,10 @@ create table lxr_indexes ( langid smallint not null, type smallint not null, relsym int references lxr_symbols, - foreign key (langid, type) references lxr_declarations (langid, declid) + foreign key (langid, type) references lxr_declarations (langid, declid) ); -create table lxr_releases +create table lxr_releases (fileid int references lxr_files, release varchar, primary key (fileid,release) @@ -76,4 +74,4 @@ grant select on lxr_indexes to public; grant select on lxr_releases to public; grant select on lxr_usage to public; grant select on lxr_status to public; -grant select on lxr_declarations to public; \ No newline at end of file +grant select on lxr_declarations to public; -- 1.4.4.1 |