Skip to content
Snippets Groups Projects
Commit 4aebe291 authored by Lucas Fernandes de Oliveira's avatar Lucas Fernandes de Oliveira
Browse files

Merge branch '7-modifica-input-para-receber-atributo-enabled' into 'develop'

Resolve "Modifica input para receber atributo enabled"

Closes #7

See merge request !7
parents 92dba7f6 0b673490
No related branches found
No related tags found
1 merge request!7Resolve "Modifica input para receber atributo enabled"
Pipeline #20730 passed
...@@ -2,14 +2,15 @@ CREATE TABLE form ( ...@@ -2,14 +2,15 @@ CREATE TABLE form (
id SERIAL PRIMARY KEY, id SERIAL PRIMARY KEY,
title TEXT, title TEXT,
description TEXT description TEXT
); );
CREATE TABLE input ( CREATE TABLE input (
id SERIAL PRIMARY KEY, id SERIAL PRIMARY KEY,
id_form INTEGER, id_form INTEGER,
placement INTEGER, placement INTEGER,
input_type TEXT, input_type TEXT,
question TEXT, question TEXT,
enabled BOOLEAN,
description TEXT description TEXT
); );
......
id;id_form;placement;input_type;question;description id;id_form;placement;input_type;question;enabled;description
1; 1; 0;TEXT;Question 1 Form 1;Description Question 1 Form 1 1; 1; 0;TEXT;Question 1 Form 1; TRUE;Description Question 1 Form 1
2; 1; 2;TEXT;Question 3 Form 1;Description Question 3 Form 1 2; 1; 2;TEXT;Question 3 Form 1; TRUE;Description Question 3 Form 1
3; 1; 1;TEXT;Question 2 Form 1;Description Question 2 Form 1 3; 1; 1;TEXT;Question 2 Form 1; TRUE;Description Question 2 Form 1
4; 2; 1;TEXT;Question 2 Form 2;Description Question 2 Form 2 4; 2; 1;TEXT;Question 2 Form 2; TRUE;Description Question 2 Form 2
5; 2; 0;TEXT;Question 1 Form 2;Description Question 1 Form 2 5; 2; 0;TEXT;Question 1 Form 2; TRUE;Description Question 1 Form 2
6; 3; 0;TEXT;Question 1 Form 3;Description Question 1 Form 3 6; 3; 0;TEXT;Question 1 Form 3; TRUE;Description Question 1 Form 3
7; 3; 1;TEXT;Question 2 Form 3;Description Question 2 Form 3 7; 3; 1;TEXT;Question 2 Form 3; TRUE;Description Question 2 Form 3
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment