You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kamailio/utils/kamctl/oracle/standard-create.sql

9 lines
199 B

CREATE TABLE version (
table_name VARCHAR2(32),
table_version NUMBER(10) DEFAULT 0 NOT NULL,
CONSTRAINT version_table_name_idx UNIQUE (table_name)
);
BEGIN map2users('version'); END;
/