This also adds a bunch of templates and URLS Start to add routes for user-facing bills pages Add an Index page that may start to display some great work
20 lines
521 B
Python
20 lines
521 B
Python
# Generated by Django 4.1.7 on 2023-04-08 15:51
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('bills', '0005_organization'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='bill',
|
|
name='organization',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='bills.organization', verbose_name='Organization'),
|
|
),
|
|
]
|