1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Generated by Django 5.0.4 on 2024-09-03 19:21
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("resources", "0018_alter_resource_subcategories"),
]
operations = [
migrations.AlterModelOptions(
name="pdfpagesnapshot",
options={"verbose_name_plural": "PDF Page Snapshots"},
),
migrations.AlterModelOptions(
name="pdfresource",
options={"verbose_name_plural": "PDF Resources"},
),
migrations.AddField(
model_name="resource",
name="price",
field=models.DecimalField(decimal_places=2, default=0.0, max_digits=6),
),
]
|