-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #106 from luftdaten-at/52-kampagnenmanager-mit-ber…
…echtigungen 52 kampagnenmanager mit berechtigungen
- Loading branch information
Showing
28 changed files
with
565 additions
and
244 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
app/campaign/migrations/0009_remove_organization_owner_remove_organization_users_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Generated by Django 5.1.2 on 2025-01-08 15:17 | ||
|
||
import django.db.models.deletion | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('campaign', '0008_alter_organizationinvitation_expiring_date'), | ||
('devices', '0012_alter_device_current_organization'), | ||
('organizations', '0001_initial'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='organization', | ||
name='owner', | ||
), | ||
migrations.RemoveField( | ||
model_name='organization', | ||
name='users', | ||
), | ||
migrations.AlterField( | ||
model_name='campaign', | ||
name='organization', | ||
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='campaigns', to='organizations.organization'), | ||
), | ||
migrations.DeleteModel( | ||
name='OrganizationInvitation', | ||
), | ||
migrations.DeleteModel( | ||
name='Organization', | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.