Skip to content
Snippets Groups Projects
Commit 8ea69101 authored by Steven Murray's avatar Steven Murray
Browse files

CTA archive IDs now start at 1 as opposed to 0

parent cf8fa235
No related branches found
No related tags found
No related merge requests found
CREATE SEQUENCE ARCHIVE_FILE_ID_SEQ
INCREMENT BY 1
START WITH 0
START WITH 1
NOMAXVALUE
MINVALUE 0
MINVALUE 1
NOCYCLE
CACHE 20
NOORDER;
......@@ -2,4 +2,4 @@ CREATE TABLE ARCHIVE_FILE_ID(
ID INTEGER,
CONSTRAINT ARCHIVE_FILE_ID_PK PRIMARY KEY(ID)
);
INSERT INTO ARCHIVE_FILE_ID(ID) VALUES(0);
INSERT INTO ARCHIVE_FILE_ID(ID) VALUES(1);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment