Commit 6a745854 authored by Marcones Silva's avatar Marcones Silva

Dump postgres para exercicio install-storage

parent 0be964a2
--
-- 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
--
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment