6 lines
135 B
MySQL
6 lines
135 B
MySQL
|
CREATE TABLE harmony_test (
|
||
|
task_id bigint
|
||
|
constraint harmony_test_pk
|
||
|
primary key,
|
||
|
options text
|
||
|
);
|