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

Resolve "Criar tabela form_updates e input_updates"

parent dcf96ff8
Branches
No related tags found
No related merge requests found
...@@ -39,3 +39,17 @@ CREATE TABLE input_answer ( ...@@ -39,3 +39,17 @@ CREATE TABLE input_answer (
value TEXT, value TEXT,
placement INTEGER placement INTEGER
); );
CREATE TABLE form_updates (
id SERIAL PRIMARY KEY,
id_form INTEGER,
update_data TEXT
);
CREATE TABLE input_updates (
id SERIAL PRIMARY KEY,
id_form_updates INTEGER,
id_input INTEGER,
input_operation char(3),
value TEXT
);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment