|
@@ -25,12 +25,6 @@ down_revision = '69fb10c3d6f0'
|
25
|
25
|
|
26
|
26
|
|
27
|
27
|
|
28
|
|
-DepotManager.configure(
|
29
|
|
- 'default', {
|
30
|
|
- 'depot.storage_path': 'depot/',
|
31
|
|
-})
|
32
|
|
-
|
33
|
|
-
|
34
|
28
|
revision_helper = sa.Table(
|
35
|
29
|
'content_revisions',
|
36
|
30
|
sa.MetaData(),
|
|
@@ -105,8 +99,14 @@ def upgrade():
|
105
|
99
|
|
106
|
100
|
|
107
|
101
|
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+ DepotManager.configure(
|
|
105
|
+ 'default', {'depot.storage_path': 'depot/'},
|
|
106
|
+ )
|
|
107
|
+ depot = DepotManager.get('default')
|
|
108
|
+
|
108
|
109
|
connection = op.get_bind()
|
109
|
|
- depot = DepotManager.get()
|
110
|
110
|
|
111
|
111
|
file_revision_query = revision_helper.select() \
|
112
|
112
|
.where(revision_helper.c.type == 'file')
|