1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| # Generated by Django 2.1.7 on 2019-03-19 16:34
|
| from django.db import migrations, models
|
|
| class Migration(migrations.Migration):
|
| dependencies = [
| ('app', '0026_update_images_count'),
| ]
|
| operations = [
| migrations.CreateModel(
| name='Plugin',
| fields=[
| ('name', models.CharField(help_text='Plugin name', max_length=255, primary_key=True, serialize=False)),
| ('enabled', models.BooleanField(db_index=True, default=True, help_text='Whether this plugin is enabled.')),
| ],
| ),
| ]
|
|