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
Aravinth Manivannan 72f97b90bf
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
feat: correct field datatypes
2024-01-31 17:25:20 +05:30

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
);