7 lines
252 B
SQL
7 lines
252 B
SQL
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
|
|
); |