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

11 lines
352 B
MySQL
Raw Normal View History

2024-06-10 15:56:25 +00:00
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 DEFAULT CURRENT_TIMESTAMP
)