Skip to content

Commit

Permalink
Restore consistency in table.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
Benoit Allard committed Mar 10, 2010
1 parent 1679a52 commit adef01a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions buildbot/db/schema/tables.sql
Expand Up @@ -107,11 +107,11 @@ CREATE TABLE sourcestamp_changes (
);
CREATE TABLE sourcestamps (
`id` INTEGER PRIMARY KEY,
`repository` TEXT not null default '',
`project` TEXT not null default '',
`branch` VARCHAR(256) default NULL,
`revision` VARCHAR(256) default NULL,
`patchid` INTEGER default NULL
`patchid` INTEGER default NULL,
`repository` TEXT not null default '',
`project` TEXT not null default ''
);

--
Expand Down

0 comments on commit adef01a

Please sign in to comment.