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

Revert "CTA archive IDs now start at 1 as opposed to 0"

This reverts commit 8ea69101.
parent 8ea69101
No related branches found
No related tags found
No related merge requests found
CREATE SEQUENCE ARCHIVE_FILE_ID_SEQ
INCREMENT BY 1
START WITH 1
START WITH 0
NOMAXVALUE
MINVALUE 1
MINVALUE 0
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(1);
INSERT INTO ARCHIVE_FILE_ID(ID) VALUES(0);
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