add postgress model for search
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
CREATE TABLE prefix_search_documents (
|
||||
id SERIAL8 PRIMARY KEY,
|
||||
docid int4 NOT NULL,
|
||||
doctype varchar(12) NOT NULL DEFAULT 'none',
|
||||
title varchar(100) NOT NULL default '',
|
||||
url varchar(250) NOT NULL default '',
|
||||
docdate timestamp NOT NULL,
|
||||
updated timestamp NOT NULL DEFAULT NOW(),
|
||||
courseid int4,
|
||||
groupid int4
|
||||
);
|
||||
Reference in New Issue
Block a user