Added Backend Part
This commit is contained in:
parent
48ac90a984
commit
f085315d70
5 changed files with 45 additions and 2 deletions
26
bookwyrm/migrations/0174_auto_20230130_1240.py
Normal file
26
bookwyrm/migrations/0174_auto_20230130_1240.py
Normal file
|
@ -0,0 +1,26 @@
|
|||
# Generated by Django 3.2.16 on 2023-01-30 12:40
|
||||
|
||||
import django.core.validators
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('auth', '0012_alter_user_first_name_max_length'),
|
||||
('bookwyrm', '0173_default_user_auth_group_setting'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='quotation',
|
||||
name='endposition',
|
||||
field=models.IntegerField(blank=True, null=True, validators=[django.core.validators.MinValueValidator(0)]),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='sitesettings',
|
||||
name='default_user_auth_group',
|
||||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.PROTECT, to='auth.group'),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue