inital check in
This commit is contained in:
25
schasite/migrations/0007_payments.py
Normal file
25
schasite/migrations/0007_payments.py
Normal file
@@ -0,0 +1,25 @@
|
||||
# Generated by Django 4.2.10 on 2024-03-27 17:40
|
||||
|
||||
import datetime
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('schasite', '0006_calendareventaddressmodel_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Payments',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('date', models.DateField(default=datetime.datetime(2024, 3, 27, 17, 40, 28, 908036))),
|
||||
('status', models.CharField(default='Completed', max_length=256)),
|
||||
('email', models.EmailField(blank=True, max_length=254, null=True)),
|
||||
('person', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='schasite.membershipperson')),
|
||||
],
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user