-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstart-postgres.sql
More file actions
executable file
·123 lines (87 loc) · 2.28 KB
/
Copy pathstart-postgres.sql
File metadata and controls
executable file
·123 lines (87 loc) · 2.28 KB
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
--
-- PostgreSQL database dump
--
SET client_encoding = 'UTF8';
SET check_function_bodies = false;
SET client_min_messages = warning;
--
-- Name: SCHEMA public; Type: COMMENT; Schema: -; Owner: postgres
--
COMMENT ON SCHEMA public IS 'Standard public schema';
SET search_path = public, pg_catalog;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: category; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
--
CREATE TABLE category (
id serial NOT NULL,
name text,
description text,
comments text,
amount numeric,
parent integer,
color text,
deleted smallint DEFAULT 0
);
--
-- Name: category_period; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
--
CREATE TABLE category_period (
id serial NOT NULL,
category_id integer,
period text,
amount numeric,
deleted smallint DEFAULT 0
);
--
-- Name: expense; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
--
CREATE TABLE expense (
id serial NOT NULL,
category_id integer,
amount numeric,
"comment" text,
store text,
entered_by integer,
date date,
deleted smallint DEFAULT 0,
unique_id text
);
--
-- Name: account; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
--
CREATE TABLE account (
id serial NOT NULL,
name text
);
--
-- Name: category_period_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
--
ALTER TABLE ONLY category_period
ADD CONSTRAINT category_period_pkey PRIMARY KEY (id);
--
-- Name: category_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
--
ALTER TABLE ONLY category
ADD CONSTRAINT category_pkey PRIMARY KEY (id);
--
-- Name: expense_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
--
ALTER TABLE ONLY expense
ADD CONSTRAINT expense_pkey PRIMARY KEY (id);
--
-- Name: account_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
--
ALTER TABLE ONLY account
ADD CONSTRAINT account_pkey PRIMARY KEY (id);
--
-- Name: public; Type: ACL; Schema: -; Owner: postgres
--
REVOKE ALL ON SCHEMA public FROM PUBLIC;
REVOKE ALL ON SCHEMA public FROM postgres;
GRANT ALL ON SCHEMA public TO postgres;
GRANT ALL ON SCHEMA public TO PUBLIC;
--
-- PostgreSQL database dump complete
--