Aravinth Manivannan
72f97b90bf
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
6 lines
200 B
SQL
6 lines
200 B
SQL
DROP TABLE mcaptcha_ux_survey_responses;
|
|
CREATE TABLE IF NOT EXISTS mcaptcha_ux_survey_responses (
|
|
will_recommend INTEGER NOT NULL,
|
|
satisfaction INTEGER NOT NULL,
|
|
ID SERIAL PRIMARY KEY NOT NULL
|
|
);
|