repo.or.cz
/
mygpo.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Run 2to3-3.4
[mygpo.git]
/
mygpo
/
podcasts
/
migrations
/
0017_podcast_subscribers.py
blob
c24f7d81dfa206b07eb3307f15fd164ec60d970b
1
# encoding: utf8
2
3
4
from
django
.
db
import
models
,
migrations
5
6
7
class
Migration
(
migrations
.
Migration
):
8
9
dependencies
= [
10
(
'podcasts'
,
'0015_auto_20140616_1105'
),
11
]
12
13
operations
= [
14
migrations
.
AddField
(
15
model_name
=
'podcast'
,
16
name
=
'subscribers'
,
17
field
=
models
.
PositiveIntegerField
(
default
=
0
),
18
preserve_default
=
True
,
19
),
20
]