common/dal/schema/000014_init.up.sql
2024-06-10 19:06:11 +03:00

12 lines
362 B
SQL

AlTER TABLE account DROP column email;
CREATE TABLE IF NOT EXISTS leadtarget(
ID BIGSERIAL UNIQUE NOT NULL PRIMARY KEY,
AccountID varchar(30) NOT NULL,
Type varchar(50) NOT NULL,
QuizID integer NOT NULL DEFAULT 0,
Target text NOT NULL,
Deleted boolean NOT NULL DEFAULT false,
CreatedAt TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
)