Added missing files for OCI support

This commit is contained in:
Ludovic Marcotte
2018-08-21 12:37:05 -04:00
parent e81cf29e4c
commit 69c03e7479
4 changed files with 47 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
--
-- (C) 2004-2005 SKYRIX Software AG
-- (C) 2006-2007 Inverse inc.
--
CREATE TABLE @{tableName} (
c_folder_id INT NOT NULL,
c_name VARCHAR (255),
c_content CLOB NOT NULL,
c_creationdate INT NOT NULL,
c_lastmodified INT NOT NULL,
c_version INT NOT NULL,
c_deleted INT NULL,
CONSTRAINT @{tableName}_pkey PRIMARY KEY (c_folder_id, c_name)
);