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
!18
Resolve "Adicionar tabela de SubForm"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Adicionar tabela de SubForm"
15-adicionar-tabela-de-subform
into
develop
Overview
0
Commits
1
Pipelines
3
Changes
3
Merged
Gianfranco Harres
requested to merge
15-adicionar-tabela-de-subform
into
develop
5 years ago
Overview
0
Commits
1
Pipelines
3
Changes
3
Expand
Closes
#15 (closed)
Edited
5 years ago
by
Gianfranco Harres
0
0
Merge request reports
Compare
develop
version 1
13315fef
5 years ago
develop (base)
and
latest version
latest version
80147a61
1 commit,
5 years ago
version 1
13315fef
2 commits,
5 years ago
3 files
+
23
−
15
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
+
7
−
0
Options
@@ -37,6 +37,7 @@ CREATE TABLE input_answer (
id
SERIAL
PRIMARY
KEY
,
id_form_answer
INTEGER
,
id_input
INTEGER
,
id_sub_form
INTEGER
,
value
TEXT
,
placement
INTEGER
);
@@ -75,3 +76,9 @@ CREATE TABLE form_user (
enabled
BOOLEAN
,
forms
INTEGER
);
CREATE
TABLE
sub_form
(
id
SERIAL
PRIMARY
KEY
,
id_input
INTEGER
,
id_content_form
INTEGER
);
Loading