1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

examples: fix customer pg table name

This commit is contained in:
morganwu 2020-04-13 03:51:10 +08:00 committed by GitHub
parent 6ada43df61
commit 5deb86de4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,10 +34,10 @@ SET default_tablespace = '';
SET default_with_oids = false; SET default_with_oids = false;
-- --
-- Name: customer; Type: TABLE; Schema: public; Owner: myuser -- Name: customers; Type: TABLE; Schema: public; Owner: myuser
-- --
CREATE TABLE public.customer ( CREATE TABLE public.customers (
id integer NOT NULL, id integer NOT NULL,
name text DEFAULT ''::text, name text DEFAULT ''::text,
nr_orders integer DEFAULT 0, nr_orders integer DEFAULT 0,
@ -46,13 +46,13 @@ CREATE TABLE public.customer (
); );
ALTER TABLE public.customer OWNER TO myuser; ALTER TABLE public.customers OWNER TO myuser;
-- --
-- Name: customer_id_seq; Type: SEQUENCE; Schema: public; Owner: myuser -- Name: customers_id_seq; Type: SEQUENCE; Schema: public; Owner: myuser
-- --
CREATE SEQUENCE public.customer_id_seq CREATE SEQUENCE public.customers_id_seq
START WITH 1 START WITH 1
INCREMENT BY 1 INCREMENT BY 1
NO MINVALUE NO MINVALUE
@ -60,27 +60,27 @@ CREATE SEQUENCE public.customer_id_seq
CACHE 1; CACHE 1;
ALTER TABLE public.customer_id_seq OWNER TO myuser; ALTER TABLE public.customers_id_seq OWNER TO myuser;
-- --
-- Name: customer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: myuser -- Name: customers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: myuser
-- --
ALTER SEQUENCE public.customer_id_seq OWNED BY public.customer.id; ALTER SEQUENCE public.customers_id_seq OWNED BY public.customers.id;
-- --
-- Name: id; Type: DEFAULT; Schema: public; Owner: myuser -- Name: id; Type: DEFAULT; Schema: public; Owner: myuser
-- --
ALTER TABLE ONLY public.customer ALTER COLUMN id SET DEFAULT nextval('public.customer_id_seq'::regclass); ALTER TABLE ONLY public.customers ALTER COLUMN id SET DEFAULT nextval('public.customers_id_seq'::regclass);
-- --
-- Data for Name: customer; Type: TABLE DATA; Schema: public; Owner: myuser -- Data for Name: customers; Type: TABLE DATA; Schema: public; Owner: myuser
-- --
COPY public.customer (id, name, nr_orders, country, created_at) FROM stdin; COPY public.customers (id, name, nr_orders, country, created_at) FROM stdin;
2 Pippi Långstrump 3 Bulgaria 2019-08-19 09:41:30.78888 2 Pippi Långstrump 3 Bulgaria 2019-08-19 09:41:30.78888
1 Bilbo Begins 11 Bulgaria 2019-08-19 09:40:31.396807 1 Bilbo Begins 11 Bulgaria 2019-08-19 09:40:31.396807
3 Viktualia Rullgardina 0 Bulgaria 2019-08-19 09:42:52.723223 3 Viktualia Rullgardina 0 Bulgaria 2019-08-19 09:42:52.723223
@ -92,18 +92,18 @@ COPY public.customer (id, name, nr_orders, country, created_at) FROM stdin;
-- --
-- Name: customer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: myuser -- Name: customers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: myuser
-- --
SELECT pg_catalog.setval('public.customer_id_seq', 1, true); SELECT pg_catalog.setval('public.customers_id_seq', 1, true);
-- --
-- Name: customer_pkey; Type: CONSTRAINT; Schema: public; Owner: myuser -- Name: customers_pkey; Type: CONSTRAINT; Schema: public; Owner: myuser
-- --
ALTER TABLE ONLY public.customer ALTER TABLE ONLY public.customers
ADD CONSTRAINT customer_pkey PRIMARY KEY (id); ADD CONSTRAINT customers_pkey PRIMARY KEY (id);
-- --