14 lines
246 B
Python
14 lines
246 B
Python
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("projects", "0001_initial"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.DeleteModel(
|
|
name="ProjectMembership",
|
|
),
|
|
]
|