survey/migrations/20211001071311_survey_users.sql

5 lines
121 B
MySQL
Raw Normal View History

2021-10-04 21:21:10 +05:30
CREATE TABLE IF NOT EXISTS survey_users (
ID UUID PRIMARY KEY NOT NULL UNIQUE,
2021-10-11 09:30:24 +05:30
created_at TIMESTAMPTZ NOT NULL
2021-10-04 21:21:10 +05:30
)