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
8d193cdb
Commit
8d193cdb
authored
4 years ago
by
Stephanie Briere Americo
Browse files
Options
Downloads
Plain Diff
Merge branch 'issue/19' into 'develop'
Issue
#19
: Add times to form table See merge request
!22
parents
6cd530d9
17b49802
No related branches found
No related tags found
1 merge request
!22
Issue #19: Add times to form table
Pipeline
#23991
passed
4 years ago
Stage: test
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+1
-0
1 addition, 0 deletions
.gitlab-ci.yml
workspace/create/00-core-tables.sql
+2
-1
2 additions, 1 deletion
workspace/create/00-core-tables.sql
workspace/fixture/form.csv
+4
-4
4 additions, 4 deletions
workspace/fixture/form.csv
with
7 additions
and
5 deletions
.gitlab-ci.yml
+
1
−
0
View file @
8d193cdb
...
@@ -12,6 +12,7 @@ variables:
...
@@ -12,6 +12,7 @@ variables:
DB_USER
:
'
postgres'
DB_USER
:
'
postgres'
DB_PASSWORD
:
'
postgres'
DB_PASSWORD
:
'
postgres'
DB_NAME
:
'
postgres'
DB_NAME
:
'
postgres'
POSTGRES_HOST_AUTH_METHOD
:
trust
GIT_SUBMODULE_STRATEGY
:
normal
GIT_SUBMODULE_STRATEGY
:
normal
stages
:
stages
:
...
...
This diff is collapsed.
Click to expand it.
workspace/create/00-core-tables.sql
+
2
−
1
View file @
8d193cdb
CREATE
TABLE
form
(
CREATE
TABLE
form
(
id
SERIAL
PRIMARY
KEY
,
id
SERIAL
PRIMARY
KEY
,
title
TEXT
,
title
TEXT
,
description
TEXT
description
TEXT
,
times
BOOLEAN
);
);
CREATE
TABLE
input
(
CREATE
TABLE
input
(
...
...
This diff is collapsed.
Click to expand it.
workspace/fixture/form.csv
+
4
−
4
View file @
8d193cdb
id;title;description
id;title;description
;times
1;Form Title 1;Form Description 1
1;Form Title 1;Form Description 1
;f
2;Form Title 2;Form Description 2
2;Form Title 2;Form Description 2
;f
3;Form Title 3;Form Description 3
3;Form Title 3;Form Description 3
;f
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