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
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
Merge requests
!9
Resolve "Arrumar form_updates e input_updates"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Arrumar form_updates e input_updates"
8-arrumar-form_updates-e-input_updates
into
develop
Overview
2
Commits
1
Pipelines
4
Changes
6
Merged
Gianfranco Harres
requested to merge
8-arrumar-form_updates-e-input_updates
into
develop
6 years ago
Overview
2
Commits
1
Pipelines
4
Changes
6
Expand
Closes
#8 (closed)
Edited
6 years ago
by
Gianfranco Harres
0
0
Merge request reports
Compare
develop
version 2
fb18914e
6 years ago
version 1
206cba57
6 years ago
develop (base)
and
latest version
latest version
9869b8dc
1 commit,
6 years ago
version 2
fb18914e
1 commit,
6 years ago
version 1
206cba57
1 commit,
6 years ago
6 files
+
16
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
workspace/create/00-core-tables.sql
+
10
−
5
Options
@@ -41,16 +41,21 @@ CREATE TABLE input_answer (
placement
INTEGER
);
CREATE
TABLE
form_update
s
(
CREATE
TABLE
form_update
(
id
SERIAL
PRIMARY
KEY
,
id_form
INTEGER
,
update_dat
a
T
EXT
update_dat
e
T
IMESTAMP
);
CREATE
TABLE
input_update
s
(
CREATE
TABLE
input_update
(
id
SERIAL
PRIMARY
KEY
,
id_form_update
s
INTEGER
,
id_form_update
INTEGER
,
id_input
INTEGER
,
input_operation
char
(
3
)
,
input_operation
_id
INTEGER
,
value
TEXT
);
CREATE
TABLE
input_operation
(
id
INTEGER
,
name
TEXT
);
Loading