Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
okd-apps
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Marcones Silva
okd-apps
Commits
6a745854
Commit
6a745854
authored
Nov 16, 2021
by
Marcones Silva
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Dump postgres para exercicio install-storage
parent
0be964a2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
59 additions
and
0 deletions
+59
-0
install-storage/db.sql
install-storage/db.sql
+59
-0
No files found.
install-storage/db.sql
0 → 100644
View file @
6a745854
--
-- PostgreSQL database dump
--
-- Dumped from database version 13.4
-- Dumped by pg_dump version 13.4
SET
statement_timeout
=
0
;
SET
lock_timeout
=
0
;
SET
idle_in_transaction_session_timeout
=
0
;
SET
client_encoding
=
'UTF8'
;
SET
standard_conforming_strings
=
on
;
SELECT
pg_catalog
.
set_config
(
'search_path'
,
''
,
false
);
SET
check_function_bodies
=
false
;
SET
xmloption
=
content
;
SET
client_min_messages
=
warning
;
SET
row_security
=
off
;
SET
default_tablespace
=
''
;
SET
default_table_access_method
=
heap
;
--
-- Name: products; Type: TABLE; Schema: public; Owner: tecuser
--
CREATE
TABLE
public
.
products
(
id
integer
,
name
character
varying
(
100
),
"preço"
numeric
);
ALTER
TABLE
public
.
products
OWNER
TO
tecuser
;
--
-- Data for Name: products; Type: TABLE DATA; Schema: public; Owner: tecuser
--
COPY
public
.
products
(
id
,
name
,
"preço"
)
FROM
stdin
;
1
cheese
8
.
99
2
Ham
7
.
49
3
Bread
2
.
50
\
.
--
-- Name: SCHEMA public; Type: ACL; Schema: -; Owner: tecuser
--
REVOKE
ALL
ON
SCHEMA
public
FROM
postgres
;
REVOKE
ALL
ON
SCHEMA
public
FROM
PUBLIC
;
GRANT
ALL
ON
SCHEMA
public
TO
tecuser
;
GRANT
ALL
ON
SCHEMA
public
TO
PUBLIC
;
--
-- PostgreSQL database dump complete
--
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment