Skip to content
Permalink
22ef643b89
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
25 lines (20 sloc) 664 Bytes
# Generated by Django 3.1.2 on 2020-10-16 11:52
from django.db import migrations, models
import django.utils.timezone
class Migration(migrations.Migration):
dependencies = [
('shoppingCart', '0003_auto_20201012_1250'),
]
operations = [
migrations.AddField(
model_name='orderitem',
name='date_created',
field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now),
preserve_default=False,
),
migrations.AddField(
model_name='orderitem',
name='expired',
field=models.BooleanField(default=False),
),
]