Merge pull request 'Added migration, created after update' (#16) from heinzel into master
All checks were successful
buildbot/tox Build done.
All checks were successful
buildbot/tox Build done.
Reviewed-on: #16
This commit was merged in pull request #16.
This commit is contained in:
20
dav_events/migrations/0033_auto_20200925_1543.py
Normal file
20
dav_events/migrations/0033_auto_20200925_1543.py
Normal file
@@ -0,0 +1,20 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11.29 on 2020-09-25 13:43
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('dav_events', '0032_auto_20190605_1400'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='eventstatus',
|
||||
name='bootstrap_context',
|
||||
field=models.CharField(blank=True, choices=[('default', 'default'), ('primary', 'primary'), ('success', 'success'), ('info', 'info'), ('warning', 'warning'), ('danger', 'danger'), ('black', 'black')], max_length=20),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user