Gratuitous whitespace.

This commit is contained in:
Eelco Dolstra 2011-11-18 20:35:27 +01:00
parent 43198e9353
commit 6c4ad48be7

View file

@ -26,6 +26,7 @@ create table Projects (
foreign key (owner) references Users(userName) on update cascade
);
create table ProjectMembers (
project text not null,
userName text not null,
@ -478,6 +479,7 @@ create table UriRevMapper (
primary key (baseuri)
);
create table NewsItems (
#ifdef POSTGRESQL
id serial primary key not null,
@ -490,6 +492,7 @@ create table NewsItems (
foreign key (author) references Users(userName) on delete cascade on update cascade
);
create table BuildMachines (
hostname text primary key NOT NULL,
username text DEFAULT '' NOT NULL,
@ -500,6 +503,7 @@ create table BuildMachines (
enabled integer DEFAULT 0 NOT NULL
);
create table BuildMachineSystemTypes (
hostname text NOT NULL,
system text NOT NULL,
@ -507,6 +511,7 @@ create table BuildMachineSystemTypes (
foreign key (hostname) references BuildMachines(hostname) on delete cascade
);
-- Some indices.
create index IndexBuildInputsOnBuild on BuildInputs(build);
create index IndexBuildInputsOnDependency on BuildInputs(dependency);