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
Merge requests
!8
Resolve "Criar tabela form_updates e input_updates"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Criar tabela form_updates e input_updates"
6-criar-tabela-form_updates-e-input_updates
into
develop
Overview
1
Commits
1
Pipelines
4
Changes
3
Merged
Gianfranco Harres
requested to merge
6-criar-tabela-form_updates-e-input_updates
into
develop
6 years ago
Overview
1
Commits
1
Pipelines
4
Changes
3
Expand
Closes
#6 (closed)
Edited
6 years ago
by
Gianfranco Harres
0
0
Merge request reports
Compare
develop
version 2
6594c7e3
6 years ago
version 1
b1ee6379
6 years ago
develop (base)
and
latest version
latest version
c362e321
1 commit,
6 years ago
version 2
6594c7e3
3 commits,
6 years ago
version 1
b1ee6379
1 commit,
6 years ago
3 files
+
14
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
workspace/create/00-core-tables.sql
+
14
−
0
Options
@@ -39,3 +39,17 @@ CREATE TABLE input_answer (
value
TEXT
,
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
);
Loading