Navigation | Overlay |
---|---|
t Navigate files | h Toggle hits |
y Change url to tip of branch | m Toggle misses |
b / v Jump to prev/next hit line | p Toggle partial |
z / x Jump to prev/next missed or partial line | 1..9 Toggle flags |
shift + o Open current page in GitHub | a Toggle all on |
/ or ? Show keyboard shortcuts dialog | c Toggle context lines or commits |
1 | 6 |
from django.db import migrations, models |
2 |
|
|
3 |
|
|
4 | 6 |
class Migration(migrations.Migration): |
5 |
|
|
6 | 6 |
dependencies = [ |
7 |
('main', '0007_auto_20191110_0123'), |
|
8 |
]
|
|
9 |
|
|
10 | 6 |
operations = [ |
11 |
migrations.AlterField( |
|
12 |
model_name='policy', |
|
13 |
name='policy_type', |
|
14 |
field=models.CharField(choices=[('rootfs', 'Root FileSystem'), ('vm', 'Virtual Machine'), ('mysql', 'MySQL'), ('postgresql', 'PostgreSQL'), ('piped', 'Piped Backup'), ('config', 'Only /etc'), ('mail', 'Only mail directory'),('folders', 'Specified folders')], default='rootfs', max_length=20) |
|
15 |
),
|
|
16 |
]
|
Read our documentation on viewing source code .