-
Notifications
You must be signed in to change notification settings - Fork 1
/
TablaMenu.txt
105 lines (74 loc) · 2.34 KB
/
TablaMenu.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
--
-- PostgreSQL database dump
--
-- Dumped from database version 16.3
-- Dumped by pg_dump version 16.3
-- Started on 2024-06-29 01:36:52
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;
--
-- TOC entry 218 (class 1259 OID 16411)
-- Name: Menu; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE public."Menu" (
"IdArticulo" integer NOT NULL,
"Articulo" character varying(100) NOT NULL,
"Precio" character varying(100) NOT NULL
);
ALTER TABLE public."Menu" OWNER TO postgres;
--
-- TOC entry 217 (class 1259 OID 16410)
-- Name: Menu_IdArticulo_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE public."Menu_IdArticulo_seq"
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER SEQUENCE public."Menu_IdArticulo_seq" OWNER TO postgres;
--
-- TOC entry 4844 (class 0 OID 0)
-- Dependencies: 217
-- Name: Menu_IdArticulo_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE public."Menu_IdArticulo_seq" OWNED BY public."Menu"."IdArticulo";
--
-- TOC entry 4691 (class 2604 OID 16414)
-- Name: Menu IdArticulo; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public."Menu" ALTER COLUMN "IdArticulo" SET DEFAULT nextval('public."Menu_IdArticulo_seq"'::regclass);
--
-- TOC entry 4838 (class 0 OID 16411)
-- Dependencies: 218
-- Data for Name: Menu; Type: TABLE DATA; Schema: public; Owner: postgres
--
COPY public."Menu" ("IdArticulo", "Articulo", "Precio") FROM stdin;
\.
--
-- TOC entry 4845 (class 0 OID 0)
-- Dependencies: 217
-- Name: Menu_IdArticulo_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('public."Menu_IdArticulo_seq"', 1, false);
--
-- TOC entry 4693 (class 2606 OID 16416)
-- Name: Menu Menu_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY public."Menu"
ADD CONSTRAINT "Menu_pkey" PRIMARY KEY ("IdArticulo");
-- Completed on 2024-06-29 01:36:52
--
-- PostgreSQL database dump complete
--