mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
9 lines
281 B
Plaintext
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)
|
|
);
|
|
|