orbeon-bluedb-integration/registration/registration-doc/src/sql/create.sql

9 lines
265 B
SQL

CREATE TABLE registration_membership
(
id bigint NOT NULL,
version bigint NOT NULL,
membership_type character varying(60) NOT NULL,
CONSTRAINT registration_membership_pkey PRIMARY KEY (id)
);
CREATE SEQUENCE registrationform_sequence START 100 INCREMENT 1;