good morning!!!!
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
U
upper
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
open
upper
Commits
6b861876
Commit
6b861876
authored
Oct 26, 2013
by
Carlos Nieto
Browse files
Options
Downloads
Patches
Plain Diff
Adding test structs.
parent
7feb665a
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
postgresql/_dumps/Makefile
+2
-0
2 additions, 0 deletions
postgresql/_dumps/Makefile
postgresql/_dumps/structs.sql
+28
-0
28 additions, 0 deletions
postgresql/_dumps/structs.sql
with
30 additions
and
0 deletions
postgresql/_dumps/Makefile
0 → 100644
+
2
−
0
View file @
6b861876
all
:
cat
structs.sql | psql
-Uupperio
upperio_tests
This diff is collapsed.
Click to expand it.
postgresql/_dumps/structs.sql
0 → 100644
+
28
−
0
View file @
6b861876
DROP
TABLE
IF
EXISTS
artist
;
CREATE
TABLE
artist
(
id
SERIAL
PRIMARY
KEY
,
name
VARCHAR
(
60
)
);
DROP
TABLE
IF
EXISTS
data_types
;
CREATE
TABLE
data_types
(
id
integer
NOT
NULL
,
_uint
integer
,
_uint8
integer
,
_uint16
integer
,
_uint32
integer
,
_uint64
integer
,
_int
integer
,
_int8
integer
,
_int16
integer
,
_int32
integer
,
_int64
integer
,
_float32
numeric
(
10
,
6
),
_float64
numeric
(
10
,
6
),
_bool
boolean
,
_string
text
,
_date
timestamp
without
time
zone
,
_time
time
without
time
zone
);
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