~pdragon/openrm/database-postgresql

« back to all changes in this revision

Viewing changes to sample_data.sql

  • Committer: pdragon
  • Date: 2009-06-10 21:50:22 UTC
  • Revision ID: pdragon@pdragon.net-20090610215022-ninemz00ofm42468
Fixed rate table. Removed empty data insertion from schema dump.

Show diffs side-by-side

added added

removed removed

Lines of Context:
84
84
INSERT INTO personal_suffix VALUES (1, 'Junior', 'Jr.');
85
85
INSERT INTO personal_suffix VALUES (2, 'Senior', 'Sr.');
86
86
 
 
87
--
 
88
-- Name: rate_rate_id_seq; Type: SEQUENCE SET; Schema: openrm; Owner: openrm
 
89
--
 
90
 
 
91
SELECT pg_catalog.setval('rate_rate_id_seq', 1, true);
 
92
 
 
93
--
 
94
-- Data for Name: rate; Type: TABLE DATA; Schema: openrm; Owner: openrm
 
95
--
 
96
 
 
97
INSERT INTO rate VALUES (1, 'Default', '$0.00', '$0.00', '$0.00', '$0.00', '$0.00', '$0.00');
 
98
 
87
99
 
88
100
 
89
101