]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - schemas/psql-destroy.sql
major postgresql schema update: stored procedures, referential integrity, tsearch2
[SourceForge/phpwiki.git] / schemas / psql-destroy.sql
1 -- $Id: psql-destroy.sql,v 1.7 2005-11-14 22:20:21 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 :version_tbl
38 DROP TABLE :version_tbl;
39
40 \echo Dropping :recent_tbl
41 DROP TABLE :recent_tbl;
42
43 \echo Dropping :nonempty_tbl
44 DROP TABLE :nonempty_tbl;
45
46 \echo Dropping :link_tbl
47 DROP TABLE :link_tbl;
48
49 --\echo Dropping :user_tbl
50 -- DROP TABLE :user_tbl;
51
52 \echo Dropping :rating_tbl
53 DROP TABLE :rating_tbl;
54
55 \echo Dropping :page_tbl
56 DROP TABLE :page_tbl;
57 \echo Dropping :page_id_seq only needed for postgresql < 7.2
58
59 \echo Dropping :member_tbl
60 DROP TABLE :member_tbl;
61
62 \echo Dropping :pref_tbl
63 DROP TABLE :pref_tbl;
64
65 \echo Dropping :session_tbl
66 DROP TABLE :session_tbl;
67
68 \echo Dropping :accesslog_tbl
69 DROP TABLE :accesslog_tbl;
70
71 DROP FUNCTION delete_versiondata (INT4, INT4);
72 DROP FUNCTION set_versiondata (INT4, INT4, INT4, INT2, TEXT, TEXT);
73 DROP FUNCTION prepare_rename_page (INT4, INT4);