Skip to content

Commit ad8f489

Browse files
author
Mark Gibbs
committed
Migration for app model
1 parent b7a5ef9 commit ad8f489

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Generated by Django 2.0.5 on 2018-05-27 00:58
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('django_plotly_dash', '0003_auto_20180514_1802'),
10+
]
11+
12+
operations = [
13+
migrations.CreateModel(
14+
name='StatelessApp',
15+
fields=[
16+
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
17+
('app_name', models.CharField(max_length=100, unique=True)),
18+
('slug', models.SlugField(blank=True, max_length=110, unique=True)),
19+
],
20+
),
21+
]

0 commit comments

Comments
 (0)