33 lines
1.3 KiB
Python
33 lines
1.3 KiB
Python
# Generated by Django 2.2.6 on 2020-02-25 01:43
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('contenttypes', '0002_remove_content_type_name'),
|
|
('qrtr_account', '0004_auto_20191126_0231'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Rule',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
],
|
|
),
|
|
migrations.CreateModel(
|
|
name='Slice',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('name', models.CharField(max_length=250)),
|
|
('icon', models.CharField(max_length=250)),
|
|
('budget', models.DecimalField(decimal_places=3, max_digits=100)),
|
|
('object_id', models.PositiveIntegerField()),
|
|
('content_type', models.ForeignKey(limit_choices_to=models.Q(models.Q(('app_label', 'qrtr_account'), ('model', 'bank')), models.Q(('app_label', 'qrtr_account'), ('model', 'slice')), _connector='OR'), on_delete=django.db.models.deletion.CASCADE, to='contenttypes.ContentType')),
|
|
],
|
|
),
|
|
]
|