errrr
This commit is contained in:
18
app/apps/accounts/migrations/0003_alter_account_email.py
Normal file
18
app/apps/accounts/migrations/0003_alter_account_email.py
Normal file
@@ -0,0 +1,18 @@
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("accounts", "0002_rename_accounts_account"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name="account",
|
||||
name="email",
|
||||
field=models.EmailField(max_length=254, unique=True),
|
||||
),
|
||||
]
|
||||
|
||||
|
||||
16
app/apps/accounts/migrations/0004_delete_account.py
Normal file
16
app/apps/accounts/migrations/0004_delete_account.py
Normal file
@@ -0,0 +1,16 @@
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("accounts", "0003_alter_account_email"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.DeleteModel(
|
||||
name="Account",
|
||||
),
|
||||
]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user