added sort_author column in itembyauthor table

git-svn-id: http://scm.dspace.org/svn/repo/trunk@426 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
David Stuve
2002-10-01 20:30:06 +00:00
parent 74d503035d
commit 7b6d65b339

View File

@@ -432,7 +432,8 @@ CREATE TABLE ItemsByAuthor
(
items_by_author_id INTEGER PRIMARY KEY,
item_id INTEGER REFERENCES Item(item_id),
author TEXT
author TEXT,
sort_author TEXT
);
-------------------------------------------------------