Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
converse.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
converse.js
Commits
ea444c36
Commit
ea444c36
authored
Apr 01, 2015
by
Michal Čihař
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix migrations
Signed-off-by:
Michal Čihař
<
michal@cihar.com
>
parent
3d6c87ef
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
3 deletions
+23
-3
weblate/trans/migrations/0026_auto_20150401_1029.py
weblate/trans/migrations/0026_auto_20150401_1029.py
+20
-0
weblate/trans/migrations/0027_auto_20150401_1030.py
weblate/trans/migrations/0027_auto_20150401_1030.py
+3
-3
No files found.
weblate/trans/migrations/0026_auto_20150401_1029.py
0 → 100644
View file @
ea444c36
# -*- coding: utf-8 -*-
from
__future__
import
unicode_literals
from
django.db
import
models
,
migrations
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'trans'
,
'0025_subproject_post_update_script'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'subproject'
,
name
=
'post_update_script'
,
field
=
models
.
CharField
(
default
=
b''
,
choices
=
[(
b''
,
b''
)],
max_length
=
200
,
blank
=
True
,
help_text
=
'Script to be executed after receiving a repository update, please check documentation for more details.'
,
verbose_name
=
'Post-update script'
),
preserve_default
=
True
,
),
]
weblate/trans/migrations/002
6_perm_save_template
.py
→
weblate/trans/migrations/002
7_auto_20150401_1030
.py
View file @
ea444c36
# -*- coding: utf-8 -*-
from
__future__
import
unicode_literals
from
django.db
import
migrations
from
django.db
import
m
odels
,
m
igrations
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'trans'
,
'002
4_subproject_edit_template
'
),
(
'trans'
,
'002
6_auto_20150401_1029
'
),
]
operations
=
[
migrations
.
AlterModelOptions
(
name
=
'unit'
,
options
=
{
'ordering'
:
[
'priority'
,
'position'
],
'permissions'
:
((
'save_translation'
,
'Can save translation'
),
(
'save_template'
,
'Can save template'
)
,
)},
options
=
{
'ordering'
:
[
'priority'
,
'position'
],
'permissions'
:
((
'save_translation'
,
'Can save translation'
),
(
'save_template'
,
'Can save template'
))},
),
]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment