]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - schemas/psql-destroy.sql
fix broken postgresql schema and upgrade, add views
[SourceForge/phpwiki.git] / schemas / psql-destroy.sql
1 -- $Id: psql-destroy.sql,v 1.8 2005-11-15 21:12:22 rurban Exp $
2
3 \set QUIET
4
5 --================================================================
6 -- Prefix for table names.
7 --
8 -- You should set this to the same value you specify for
9 -- $DBParams['prefix'] in index.php.
10
11 \set prefix     ''
12
13 --================================================================
14 --
15 -- Don't modify below this point unless you know what you are doing.
16 --
17 --================================================================
18
19 \set qprefix '\'' :prefix '\''
20 \echo Dropping all PhpWiki tables with:
21 \echo '       prefix = ' :qprefix
22 \echo
23
24 \set page_tbl           :prefix 'page'
25 \set page_id_seq        :prefix 'page_id_seq'
26 \set version_tbl        :prefix 'version'
27 \set recent_tbl         :prefix 'recent'
28 \set nonempty_tbl       :prefix 'nonempty'
29 \set link_tbl           :prefix 'link'
30 \set session_tbl        :prefix 'session'
31 \set pref_tbl           :prefix 'pref'
32 --\set user_tbl         :prefix 'user'
33 \set member_tbl         :prefix 'member'
34 \set rating_tbl         :prefix 'rating'
35 \set accesslog_tbl      :prefix 'accesslog'
36
37 \echo Dropping table :version_tbl
38 DROP TABLE :version_tbl;
39
40 \echo Dropping table :recent_tbl
41 DROP TABLE :recent_tbl;
42
43 \echo Dropping table :nonempty_tbl
44 DROP TABLE :nonempty_tbl;
45
46 \echo Dropping table :link_tbl
47 DROP TABLE :link_tbl;
48
49 \echo Dropping table :rating_tbl
50 DROP TABLE :rating_tbl;
51
52 \set existing_page :prefix 'existing_page'
53 \echo Dropping view :existing_page
54 DROP VIEW :existing_page;
55
56 \set curr_page     :prefix 'curr_page'
57 \echo Dropping view :curr_page
58 DROP VIEW :curr_page;
59
60 \echo Dropping table :page_tbl
61 DROP TABLE :page_tbl CASCADE;
62 \echo Dropping :page_id_seq only needed for postgresql < 7.2
63
64 \echo Dropping table :member_tbl
65 DROP TABLE :member_tbl;
66
67 \echo Dropping table :pref_tbl
68 DROP TABLE :pref_tbl;
69
70 --\echo Dropping table :user_tbl
71 --DROP TABLE :user_tbl;
72
73 \echo Dropping table :session_tbl
74 DROP TABLE :session_tbl;
75
76 \echo Dropping table :accesslog_tbl
77 DROP TABLE :accesslog_tbl;
78
79 \echo Dropping stored procedures
80 DROP FUNCTION delete_versiondata (INT4, INT4);
81 DROP FUNCTION set_versiondata (INT4, INT4, INT4, INT2, TEXT, TEXT);
82 DROP FUNCTION prepare_rename_page (INT4, INT4);