Skip to content
Snippets Groups Projects
Commit 0b673490 authored by Gianfranco Harres's avatar Gianfranco Harres Committed by Lucas Fernandes de Oliveira
Browse files

Resolve "Modifica input para receber atributo enabled"

parent 92dba7f6
No related branches found
No related tags found
No related merge requests found
...@@ -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