Template
Add shopper accounts, reviews, tracking, and seed_demo (#9)
Closes #9. Shop-gated buyer accounts, purchase reviews, Stripe customer ids, shipment tracking, slim public contact form, and a template-neutral seed_demo command.
This commit is contained in:
@@ -0,0 +1,54 @@
|
||||
# Generated by Django 6.1
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("shipping", "0001_initial"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="shipment",
|
||||
name="last_tracked_at",
|
||||
field=models.DateTimeField(blank=True, null=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name="shipment",
|
||||
name="tracker_id",
|
||||
field=models.CharField(blank=True, max_length=255),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name="shipment",
|
||||
name="tracking_events",
|
||||
field=models.JSONField(blank=True, default=list),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name="shipment",
|
||||
name="tracking_status",
|
||||
field=models.CharField(
|
||||
blank=True,
|
||||
choices=[
|
||||
("unknown", "Unknown"),
|
||||
("pre_transit", "Pre-transit"),
|
||||
("in_transit", "In transit"),
|
||||
("out_for_delivery", "Out for delivery"),
|
||||
("delivered", "Delivered"),
|
||||
("available_for_pickup", "Available for pickup"),
|
||||
("return_to_sender", "Return to sender"),
|
||||
("failure", "Exception"),
|
||||
("cancelled", "Cancelled"),
|
||||
("error", "Error"),
|
||||
],
|
||||
default="unknown",
|
||||
max_length=32,
|
||||
),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name="shipment",
|
||||
name="tracking_url",
|
||||
field=models.URLField(blank=True),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user