This repository has been archived on 2024-06-07. You can view files and clone it, but cannot push or open issues or pull requests.
ux-survey/migrations/20240131115426_response_corretion.sql

7 lines
200 B
MySQL
Raw Normal View History

2024-01-31 17:25:20 +05:30
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
);