Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
form-creator-database
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Harbor Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
simmctic
form-creator
form-creator-database
Commits
05f91848
Commit
05f91848
authored
5 years ago
by
Gianfranco Harres
Committed by
Lucas Fernandes de Oliveira
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Resolve "Criar tabela form_updates e input_updates"
parent
dcf96ff8
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
workspace/create/00-core-tables.sql
+14
-0
14 additions, 0 deletions
workspace/create/00-core-tables.sql
workspace/fixture/form_updates.csv
+0
-0
0 additions, 0 deletions
workspace/fixture/form_updates.csv
workspace/fixture/input_updates.csv
+0
-0
0 additions, 0 deletions
workspace/fixture/input_updates.csv
with
14 additions
and
0 deletions
workspace/create/00-core-tables.sql
+
14
−
0
View file @
05f91848
...
@@ -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
);
This diff is collapsed.
Click to expand it.
workspace/fixture/form_updates.csv
0 → 100644
+
0
−
0
View file @
05f91848
This diff is collapsed.
Click to expand it.
workspace/fixture/input_updates.csv
0 → 100644
+
0
−
0
View file @
05f91848
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment