Changed 'number' column to 'count' as number is a reserved word in Oracle

git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@2364 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
Graham Triggs
2007-11-26 10:21:46 +00:00
parent 3ddbccad9b
commit 54058b0aff
3 changed files with 14 additions and 14 deletions

View File

@@ -742,12 +742,12 @@ WHERE ItemsBySubject.item_id = Communities2Item.item_id
CREATE TABLE collection_item_count (
collection_id INTEGER REFERENCES collection(collection_id),
number INTEGER
count INTEGER
);
CREATE TABLE community_item_count (
community_id INTEGER REFERENCES community(community_id),
number INTEGER
count INTEGER
);
-------------------------------------------------------