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

Following on from GitLab issue cta/CTA#371, replaced INTEGER with NUMERIC(20,...

Following on from GitLab issue cta/CTA#371, replaced INTEGER with NUMERIC(20, 0) within mysql_catalogue_schema_header.sql
parent bfc24929
No related branches found
No related tags found
No related merge requests found
CREATE TABLE ARCHIVE_FILE_ID(
ID INTEGER,
ID NUMERIC(20, 0),
CONSTRAINT ARCHIVE_FILE_ID_PK PRIMARY KEY(ID)
);
INSERT INTO ARCHIVE_FILE_ID(ID) VALUES(1);
CREATE TABLE STORAGE_CLASS_ID(
ID INTEGER,
ID NUMERIC(20, 0),
CONSTRAINT STORAGE_CLASS_ID_PK PRIMARY KEY(ID)
);
INSERT INTO STORAGE_CLASS_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