Files
ebean/src/test/resources/assert/BaseTableDdlTest/createTable-apply.txt
T
2015-08-04 17:37:16 +12:00

9 lines
281 B
Plaintext

create table mytable (
id integer not null,
status varchar(1) not null,
order_id integer not null,
constraint ck_mytable_status check (status in ('A','B')),
constraint pk_mytable primary key (id)
);