common/dal/schema/000025_init.up.sql

7 lines
252 B
MySQL
Raw Normal View History

2025-06-23 08:07:31 +00:00
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
);