1 -- Fix up after population of the database...
3 -- First of all readd the constraints (takes ~1:30 on auric)
5 ALTER TABLE files ADD CONSTRAINT files_location FOREIGN KEY (location) REFERENCES location(id) MATCH FULL;
7 ALTER TABLE source ADD CONSTRAINT source_maintainer FOREIGN KEY (maintainer) REFERENCES maintainer(id) MATCH FULL;
8 ALTER TABLE source ADD CONSTRAINT source_file FOREIGN KEY (file) REFERENCES files(id) MATCH FULL;
9 ALTER TABLE source ADD CONSTRAINT source_sig_fpr FOREIGN KEY (sig_fpr) REFERENCES fingerprint(id) MATCH FULL;
11 ALTER TABLE dsc_files ADD CONSTRAINT dsc_files_source FOREIGN KEY (source) REFERENCES source(id) MATCH FULL;
12 ALTER TABLE dsc_files ADD CONSTRAINT dsc_files_file FOREIGN KEY (file) REFERENCES files(id) MATCH FULL;
14 ALTER TABLE binaries ADD CONSTRAINT binaries_maintainer FOREIGN KEY (maintainer) REFERENCES maintainer(id) MATCH FULL;
15 ALTER TABLE binaries ADD CONSTRAINT binaries_source FOREIGN KEY (source) REFERENCES source(id) MATCH FULL;
16 ALTER TABLE binaries ADD CONSTRAINT binaries_architecture FOREIGN KEY (architecture) REFERENCES architecture(id) MATCH FULL;
17 ALTER TABLE binaries ADD CONSTRAINT binaries_file FOREIGN KEY (file) REFERENCES files(id) MATCH FULL;
18 ALTER TABLE binaries ADD CONSTRAINT binaries_sig_fpr FOREIGN KEY (sig_fpr) REFERENCES fingerprint(id) MATCH FULL;
20 ALTER TABLE suite_architectures ADD CONSTRAINT suite_architectures_suite FOREIGN KEY (suite) REFERENCES suite(id) MATCH FULL;
21 ALTER TABLE suite_architectures ADD CONSTRAINT suite_architectures_architecture FOREIGN KEY (architecture) REFERENCES architecture(id) MATCH FULL;
23 ALTER TABLE bin_associations ADD CONSTRAINT bin_associations_suite FOREIGN KEY (suite) REFERENCES suite(id) MATCH FULL;
24 ALTER TABLE bin_associations ADD CONSTRAINT bin_associations_bin FOREIGN KEY (bin) REFERENCES binaries(id) MATCH FULL;
26 ALTER TABLE src_associations ADD CONSTRAINT src_associations_suite FOREIGN KEY (suite) REFERENCES suite(id) MATCH FULL;
27 ALTER TABLE src_associations ADD CONSTRAINT src_associations_source FOREIGN KEY (source) REFERENCES source(id) MATCH FULL;
29 ALTER TABLE override ADD CONSTRAINT override_suite FOREIGN KEY (suite) REFERENCES suite(id) MATCH FULL;
30 ALTER TABLE override ADD CONSTRAINT override_component FOREIGN KEY (component) REFERENCES component(id) MATCH FULL;
31 ALTER TABLE override ADD CONSTRAINT override_priority FOREIGN KEY (priority) REFERENCES priority(id) MATCH FULL;
32 ALTER TABLE override ADD CONSTRAINT override_section FOREIGN KEY (section) REFERENCES section(id) MATCH FULL;
33 ALTER TABLE override ADD CONSTRAINT override_type FOREIGN KEY (type) REFERENCES override_type(id) MATCH FULL;
35 ALTER TABLE accepted_autobuild ADD CONSTRAINT accepted_autobuild_suite FOREIGN KEY (suite) REFERENCES suite(id) MATCH FULL;
37 -- Then correct all the id SERIAL PRIMARY KEY columns...
39 CREATE FUNCTION files_id_max() RETURNS INT4
40 AS 'SELECT max(id) FROM files'
42 CREATE FUNCTION source_id_max() RETURNS INT4
43 AS 'SELECT max(id) FROM source'
45 CREATE FUNCTION src_associations_id_max() RETURNS INT4
46 AS 'SELECT max(id) FROM src_associations'
48 CREATE FUNCTION dsc_files_id_max() RETURNS INT4
49 AS 'SELECT max(id) FROM dsc_files'
51 CREATE FUNCTION binaries_id_max() RETURNS INT4
52 AS 'SELECT max(id) FROM binaries'
54 CREATE FUNCTION bin_associations_id_max() RETURNS INT4
55 AS 'SELECT max(id) FROM bin_associations'
57 CREATE FUNCTION section_id_max() RETURNS INT4
58 AS 'SELECT max(id) FROM section'
60 CREATE FUNCTION priority_id_max() RETURNS INT4
61 AS 'SELECT max(id) FROM priority'
63 CREATE FUNCTION override_type_id_max() RETURNS INT4
64 AS 'SELECT max(id) FROM override_type'
67 SELECT setval('files_id_seq', files_id_max());
68 SELECT setval('source_id_seq', source_id_max());
69 SELECT setval('src_associations_id_seq', src_associations_id_max());
70 SELECT setval('dsc_files_id_seq', dsc_files_id_max());
71 SELECT setval('binaries_id_seq', binaries_id_max());
72 SELECT setval('bin_associations_id_seq', bin_associations_id_max());
73 SELECT setval('section_id_seq', section_id_max());
74 SELECT setval('priority_id_seq', priority_id_max());
75 SELECT setval('override_type_id_seq', override_type_id_max());
77 -- Vacuum the tables for efficency
89 VACUUM suite_architectures;
90 VACUUM bin_associations;
91 VACUUM src_associations;
97 -- FIXME: has to be a better way to do this
98 GRANT ALL ON architecture, architecture_id_seq, archive,
99 archive_id_seq, bin_associations, bin_associations_id_seq, binaries,
100 binaries_id_seq, component, component_id_seq, dsc_files,
101 dsc_files_id_seq, files, files_id_seq, fingerprint,
102 fingerprint_id_seq, location, location_id_seq, maintainer,
103 maintainer_id_seq, override, override_type, override_type_id_seq,
104 priority, priority_id_seq, section, section_id_seq, source,
105 source_id_seq, src_associations, src_associations_id_seq, suite,
106 suite_architectures, suite_id_seq, accepted_autobuild TO GROUP ftpmaster;
108 -- Read only access to user 'nobody'
109 GRANT SELECT ON architecture, architecture_id_seq, archive,
110 archive_id_seq, bin_associations, bin_associations_id_seq, binaries,
111 binaries_id_seq, component, component_id_seq, dsc_files,
112 dsc_files_id_seq, files, files_id_seq, fingerprint,
113 fingerprint_id_seq, location, location_id_seq, maintainer,
114 maintainer_id_seq, override, override_type, override_type_id_seq,
115 priority, priority_id_seq, section, section_id_seq, source,
116 source_id_seq, src_associations, src_associations_id_seq, suite,
117 suite_architectures, suite_id_seq, accepted_autobuild TO PUBLIC;