7 lines
252 B
MySQL
7 lines
252 B
MySQL
|
CREATE TABLE IF NOT EXISTS quiz_utm (
|
||
|
id bigserial UNIQUE NOT NULL PRIMARY KEY,
|
||
|
quizID bigint not null,
|
||
|
utm text not null default '',
|
||
|
deleted boolean not null default false,
|
||
|
created_at TIMESTAMP not null DEFAULT CURRENT_TIMESTAMP
|
||
|
);
|