diff --git a/SkylineToolsStore/resources/schemas/dbscripts/sqlserver/skylinetoolsstore-0.00-0.01.sql b/SkylineToolsStore/resources/schemas/dbscripts/sqlserver/skylinetoolsstore-0.00-0.01.sql deleted file mode 100644 index 3d83da68..00000000 --- a/SkylineToolsStore/resources/schemas/dbscripts/sqlserver/skylinetoolsstore-0.00-0.01.sql +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Copyright (c) 2011 LabKey Corporation - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - --- Create schema, tables, indexes, and constraints used for SkylineToolsStore module here --- All SQL VIEW definitions should be created in skylinetoolsstore-create.sql and dropped in skylinetoolsstore-drop.sql -CREATE SCHEMA skylinetoolsstore; -GO - -CREATE TABLE skylinetoolsstore.SkylineTool -( - -- standard fields - _ts TIMESTAMP, - RowId INT IDENTITY(1,1), - CreatedBy USERID, - Created DATETIME, - ModifiedBy USERID, - Modified DATETIME, - Owner USERID NULL, - - -- other fields - Container ENTITYID NOT NULL, - ZipName NVARCHAR(50) NOT NULL, - Name NVARCHAR(50) NOT NULL, - Authors NVARCHAR(200) NULL, - Organization NVARCHAR(200) NULL, - Provider NVARCHAR(200) NULL, - Version NVARCHAR(15) NOT NULL, - Description NVARCHAR(1000) NULL, - Identifier NVARCHAR(100) NOT NULL, - Downloads INT DEFAULT DEFAULT 0, - Latest BIT, - - CONSTRAINT PK_SkylineTool PRIMARY KEY (RowId) -); diff --git a/SkylineToolsStore/resources/schemas/dbscripts/sqlserver/skylinetoolsstore-13.23-13.24.sql b/SkylineToolsStore/resources/schemas/dbscripts/sqlserver/skylinetoolsstore-13.23-13.24.sql deleted file mode 100644 index 004bcebc..00000000 --- a/SkylineToolsStore/resources/schemas/dbscripts/sqlserver/skylinetoolsstore-13.23-13.24.sql +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Copyright (c) 2011 LabKey Corporation - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - --- Create schema, tables, indexes, and constraints used for SkylineToolsStore module here --- All SQL VIEW definitions should be created in skylinetoolsstore-create.sql and dropped in skylinetoolsstore-drop.sql -ALTER TABLE skylinetoolsstore.SkylineTool ADD Languages VARCHAR(50); diff --git a/SkylineToolsStore/resources/schemas/dbscripts/sqlserver/skylinetoolsstore-13.24-13.25.sql b/SkylineToolsStore/resources/schemas/dbscripts/sqlserver/skylinetoolsstore-13.24-13.25.sql deleted file mode 100644 index 6a6fd19b..00000000 --- a/SkylineToolsStore/resources/schemas/dbscripts/sqlserver/skylinetoolsstore-13.24-13.25.sql +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Copyright (c) 2011 LabKey Corporation - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - --- Create schema, tables, indexes, and constraints used for SkylineToolsStore module here --- All SQL VIEW definitions should be created in skylinetoolsstore-create.sql and dropped in skylinetoolsstore-drop.sql - -ALTER TABLE skylinetoolsstore.SkylineTool ALTER COLUMN Description TEXT; diff --git a/SkylineToolsStore/resources/schemas/dbscripts/sqlserver/skylinetoolsstore-13.25-13.26.sql b/SkylineToolsStore/resources/schemas/dbscripts/sqlserver/skylinetoolsstore-13.25-13.26.sql deleted file mode 100644 index 286cf1f6..00000000 --- a/SkylineToolsStore/resources/schemas/dbscripts/sqlserver/skylinetoolsstore-13.25-13.26.sql +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright (c) 2011 LabKey Corporation - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - --- Create schema, tables, indexes, and constraints used for SkylineToolsStore module here --- All SQL VIEW definitions should be created in skylinetoolsstore-create.sql and dropped in skylinetoolsstore-drop.sql - -CREATE TABLE skylinetoolsstore.Rating -( - -- standard fields - _ts TIMESTAMP DEFAULT now(), - RowId SERIAL, - CreatedBy USERID, - Created TIMESTAMP, - Modified TIMESTAMP, - - -- other fields - Rating INT DEFAULT 1, - ToolID INT NOT NULL, - Review TEXT NULL, - Title VARCHAR(60), - - CONSTRAINT PK_Rating PRIMARY KEY (RowId), - CONSTRAINT FK_Rating_SkylineTool FOREIGN KEY (ToolID) REFERENCES skylinetoolssotre.SkylineTool(RowId) -); diff --git a/signup/resources/schemas/dbscripts/sqlserver/signup-13.20-13.21.sql b/signup/resources/schemas/dbscripts/sqlserver/signup-13.20-13.21.sql deleted file mode 100644 index 51778933..00000000 --- a/signup/resources/schemas/dbscripts/sqlserver/signup-13.20-13.21.sql +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Copyright (c) 2011 LabKey Corporation - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - --- Create schema, tables, indexes, and constraints used for SignUp module here --- All SQL VIEW definitions should be created in signup-create.sql and dropped in signup-drop.sql -CREATE SCHEMA signup; -GO \ No newline at end of file