mirror of
https://github.com/nanoy42/coope
synced 2024-11-04 17:06:27 +00:00
23 lines
597 B
Python
23 lines
597 B
Python
# Generated by Django 2.1 on 2019-01-06 04:13
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('preferences', '0004_auto_20190106_0452'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='generalpreferences',
|
|
name='floating_buttons',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
migrations.AddField(
|
|
model_name='historicalgeneralpreferences',
|
|
name='floating_buttons',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|