feat: correct field datatypes
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
ae1b446d08
commit
72f97b90bf
2 changed files with 8 additions and 2 deletions
|
@ -5,8 +5,8 @@
|
||||||
"columns": [],
|
"columns": [],
|
||||||
"parameters": {
|
"parameters": {
|
||||||
"Left": [
|
"Left": [
|
||||||
"Bool",
|
"Int4",
|
||||||
"Bool"
|
"Int4"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"nullable": []
|
"nullable": []
|
||||||
|
|
6
migrations/20240131115426_response_corretion.sql
Normal file
6
migrations/20240131115426_response_corretion.sql
Normal 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
|
||||||
|
);
|
Reference in a new issue