root/trunk/wifidog-auth/sql/wifidog-postgres-initial-data.sql @ 695

Revision 695, 4.6 KB (checked in by fproulx, 8 years ago)

2005-08-21 Francois Proulx <francois.proulx@…>

  • Node admin UI should now be completed.
  • Minor bug fixes in Geocoder
  • Merged node_owners and node_tech_officers table into node_stakeholders
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
RevLine 
[223]1\connect wifidog;
[514]2BEGIN;
[689]3--
4-- PostgreSQL database dump
5--
6
7SET client_encoding = 'UNICODE';
8SET check_function_bodies = false;
9SET client_min_messages = warning;
10
11SET search_path = public, pg_catalog;
12
13--
14-- Data for Name: token_status; Type: TABLE DATA; Schema: public; Owner: wifidog
15--
16
17INSERT INTO token_status (token_status) VALUES ('UNUSED');
18INSERT INTO token_status (token_status) VALUES ('INUSE');
19INSERT INTO token_status (token_status) VALUES ('USED');
20
21
22--
23-- PostgreSQL database dump complete
24--
25
26--
27-- PostgreSQL database dump
28--
29
30SET client_encoding = 'UNICODE';
31SET check_function_bodies = false;
32SET client_min_messages = warning;
33
34SET search_path = public, pg_catalog;
35
36--
37-- Data for Name: venue_types; Type: TABLE DATA; Schema: public; Owner: wifidog
38--
39
40INSERT INTO venue_types (venue_type) VALUES ('Airline');
41INSERT INTO venue_types (venue_type) VALUES ('Airport Terminal/Lounge');
42INSERT INTO venue_types (venue_type) VALUES ('Bus Station');
43INSERT INTO venue_types (venue_type) VALUES ('Business/Conference Center');
44INSERT INTO venue_types (venue_type) VALUES ('Cafe/Coffee Shop');
45INSERT INTO venue_types (venue_type) VALUES ('Camp Ground');
46INSERT INTO venue_types (venue_type) VALUES ('Community Network');
47INSERT INTO venue_types (venue_type) VALUES ('Convention Center');
48INSERT INTO venue_types (venue_type) VALUES ('Cruise Ship');
49INSERT INTO venue_types (venue_type) VALUES ('Copy Center/Business Services');
50INSERT INTO venue_types (venue_type) VALUES ('Entertainment Venues');
51INSERT INTO venue_types (venue_type) VALUES ('Gas/Petrol Station');
52INSERT INTO venue_types (venue_type) VALUES ('Hospital');
53INSERT INTO venue_types (venue_type) VALUES ('Hotel');
54INSERT INTO venue_types (venue_type) VALUES ('Internet Cafe');
55INSERT INTO venue_types (venue_type) VALUES ('Kiosk');
56INSERT INTO venue_types (venue_type) VALUES ('Library');
57INSERT INTO venue_types (venue_type) VALUES ('Marina/Harbour');
58INSERT INTO venue_types (venue_type) VALUES ('Motorway Travel Center/TruckStop');
59INSERT INTO venue_types (venue_type) VALUES ('Office Building/Complex');
60INSERT INTO venue_types (venue_type) VALUES ('Other');
61INSERT INTO venue_types (venue_type) VALUES ('Park');
62INSERT INTO venue_types (venue_type) VALUES ('Pay Phone/Booth');
63INSERT INTO venue_types (venue_type) VALUES ('Port/Ferry Terminal');
64INSERT INTO venue_types (venue_type) VALUES ('Residential Housing/Apt Bldg');
65INSERT INTO venue_types (venue_type) VALUES ('Restaurant/Bar/Pub');
66INSERT INTO venue_types (venue_type) VALUES ('School/University');
67INSERT INTO venue_types (venue_type) VALUES ('Shopping Center');
68INSERT INTO venue_types (venue_type) VALUES ('Sports Arena/Venue');
69INSERT INTO venue_types (venue_type) VALUES ('Store/Retail Shop');
70INSERT INTO venue_types (venue_type) VALUES ('Train');
71INSERT INTO venue_types (venue_type) VALUES ('Train/Rail Station');
72INSERT INTO venue_types (venue_type) VALUES ('Water Travel');
73INSERT INTO venue_types (venue_type) VALUES ('Wi-Fi Zone');
74
75
76--
77-- PostgreSQL database dump complete
78--
79
80--
81-- PostgreSQL database dump
82--
83
84SET client_encoding = 'UNICODE';
85SET check_function_bodies = false;
86SET client_min_messages = warning;
87
88SET search_path = public, pg_catalog;
89
90--
91-- Data for Name: node_deployment_status; Type: TABLE DATA; Schema: public; Owner: wifidog
92--
93
94INSERT INTO node_deployment_status (node_deployment_status) VALUES ('DEPLOYED');
95INSERT INTO node_deployment_status (node_deployment_status) VALUES ('IN_PLANNING');
96INSERT INTO node_deployment_status (node_deployment_status) VALUES ('IN_TESTING');
97INSERT INTO node_deployment_status (node_deployment_status) VALUES ('NON_WIFIDOG_NODE');
98INSERT INTO node_deployment_status (node_deployment_status) VALUES ('PERMANENTLY_CLOSED');
99INSERT INTO node_deployment_status (node_deployment_status) VALUES ('TEMPORARILY_CLOSED');
100
101
102--
103-- PostgreSQL database dump complete
104--
105
106INSERT INTO nodes (node_id, name) VALUES ('default', 'Unknown node');
107--
108-- PostgreSQL database dump
109--
110
111SET client_encoding = 'UNICODE';
112SET check_function_bodies = false;
113SET client_min_messages = warning;
114
115SET search_path = public, pg_catalog;
116
117--
118-- Data for Name: schema_info; Type: TABLE DATA; Schema: public; Owner: wifidog
119--
120
[695]121INSERT INTO schema_info (tag, value) VALUES ('schema_version', '25');
[689]122
123
124--
125-- PostgreSQL database dump complete
126--
127
128--
129-- PostgreSQL database dump
130--
131
132SET client_encoding = 'UNICODE';
133SET check_function_bodies = false;
134SET client_min_messages = warning;
135
136SET search_path = public, pg_catalog;
137
138--
139-- Data for Name: locales; Type: TABLE DATA; Schema: public; Owner: wifidog
140--
141
142INSERT INTO locales (locales_id) VALUES ('fr');
143INSERT INTO locales (locales_id) VALUES ('en');
144
145
146--
147-- PostgreSQL database dump complete
148--
149
150COMMIT;
Note: See TracBrowser for help on using the browser.