Cleaned-up submission UI

git-svn-id: http://scm.dspace.org/svn/repo/trunk@232 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
Robert Tansley
2002-07-22 17:38:21 +00:00
parent 04b2ab6d9e
commit 16c8dc047b
52 changed files with 6596 additions and 20 deletions

View File

@@ -64,6 +64,18 @@ CREATE TABLE BitstreamFormatRegistry
internal BOOL
);
-------------------------------------------------------
-- FormatIdentifier table
-------------------------------------------------------
DROP TABLE FormatIdentifier;
CREATE TABLE FormatIdentifier
(
id INTEGER PRIMARY KEY,
bitstream_format_id INTEGER REFERENCES BitstreamFormatRegistry(bitstream_format_id),
extension VARCHAR(16)
);
-------------------------------------------------------
-- Bitstream table
-------------------------------------------------------