author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Tue, 07 Jul 2009 11:36:51 +0200 | |
changeset 2297 | 4cf57dd80650 |
parent 1977 | 606923dff11b |
permissions | -rw-r--r-- |
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1802
diff
changeset
|
1 |
""" |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1802
diff
changeset
|
2 |
|
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1802
diff
changeset
|
3 |
:organization: Logilab |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1802
diff
changeset
|
4 |
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2. |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1802
diff
changeset
|
5 |
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1802
diff
changeset
|
6 |
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1802
diff
changeset
|
7 |
""" |
0 | 8 |
if confirm('remove deprecated database constraints?'): |
9 |
execute = session.system_sql |
|
10 |
session.set_pool() |
|
11 |
dbhelper = session.pool.source('system').dbhelper |
|
12 |
cu = session.pool['system'] |
|
13 |
for table in dbhelper.list_tables(cu): |
|
14 |
if table.endswith('_relation'): |
|
15 |
try: |
|
16 |
execute('ALTER TABLE %s DROP CONSTRAINT %s_fkey1' % (table, table)) |
|
17 |
execute('ALTER TABLE %s DROP CONSTRAINT %s_fkey2' % (table, table)) |
|
18 |
except: |
|
19 |
continue |
|
20 |
checkpoint() |
|
21 |
||
22 |
if 'inline_view' in schema: |
|
23 |
# inline_view attribute should have been deleted for a while now.... |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
24 |
drop_attribute('CWRelation', 'inline_view') |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1398
diff
changeset
|
25 |