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/20240125111824_mcaptcha_ux_survey_responses.sql
Aravinth Manivannan 89e26de87d
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
feat: bootstrap survey from showcase
2024-01-31 15:22:39 +05:30

5 lines
159 B
SQL

CREATE TABLE IF NOT EXISTS mcaptcha_ux_survey_responses (
will_recommend BOOLEAN NOT NULL,
satisfaction BOOLEAN NOT NULL,
ID SERIAL PRIMARY KEY NOT NULL
);