Skip to content
This repository has been archived by the owner on Sep 10, 2021. It is now read-only.

Commit

Permalink
BUG: refs #0377. Fix pgsql table defs
Browse files Browse the repository at this point in the history
  • Loading branch information
zachmullen committed Jan 12, 2012
1 parent 9391f9f commit 89eede9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/sizequota/database/pgsql/1.0.0.sql
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
DROP TABLE IF EXISTS sizequota_folderquota;

CREATE TABLE sizequota_folderquota (
folderquota_id bigint serial PRIMARY KEY,
folderquota_id serial PRIMARY KEY,
folder_id bigint NOT NULL,
quota character varying(50) NOT NULL
);
Expand Down

0 comments on commit 89eede9

Please sign in to comment.