feat: correct field datatypes
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
Aravinth Manivannan 2024-01-31 17:25:20 +05:30
parent ae1b446d08
commit 72f97b90bf
Signed by: realaravinth
GPG Key ID: F8F50389936984FF
2 changed files with 8 additions and 2 deletions

View File

@ -5,8 +5,8 @@
"columns": [],
"parameters": {
"Left": [
"Bool",
"Bool"
"Int4",
"Int4"
]
},
"nullable": []

View File

@ -0,0 +1,6 @@
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
);