-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
95a7d3a
commit 2bb5470
Showing
4 changed files
with
100 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Generated by Django 3.0.3 on 2020-03-27 21:53 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('accounts', '0022_auto_20200324_0013'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='socialnetwork', | ||
name='base_url', | ||
field=models.URLField(blank=True, max_length=255), | ||
), | ||
migrations.AlterField( | ||
model_name='socialnetwork', | ||
name='url', | ||
field=models.URLField(max_length=255), | ||
), | ||
migrations.AlterField( | ||
model_name='source', | ||
name='url', | ||
field=models.URLField(blank=True, max_length=255), | ||
), | ||
migrations.AlterField( | ||
model_name='user', | ||
name='role', | ||
field=models.ForeignKey(default='', on_delete=django.db.models.deletion.CASCADE, to='accounts.Role'), | ||
), | ||
migrations.AlterField( | ||
model_name='user', | ||
name='url', | ||
field=models.URLField(blank=True, default='', max_length=255), | ||
), | ||
] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Generated by Django 3.0.3 on 2020-03-27 21:53 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('mdi', '0046_auto_20200325_1825'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='organization', | ||
name='logo_url', | ||
field=models.URLField(blank=True, default='', max_length=255), | ||
), | ||
migrations.AddField( | ||
model_name='organization', | ||
name='media_url', | ||
field=models.URLField(blank=True, default='', max_length=255), | ||
), | ||
migrations.AlterField( | ||
model_name='license', | ||
name='url', | ||
field=models.URLField(blank=True, max_length=255), | ||
), | ||
migrations.AlterField( | ||
model_name='organization', | ||
name='admin_email', | ||
field=models.EmailField(default='', max_length=255), | ||
), | ||
migrations.AlterField( | ||
model_name='organization', | ||
name='email', | ||
field=models.EmailField(max_length=255), | ||
), | ||
migrations.AlterField( | ||
model_name='organization', | ||
name='url', | ||
field=models.URLField(blank=True, default='', max_length=255), | ||
), | ||
migrations.AlterField( | ||
model_name='tool', | ||
name='url', | ||
field=models.URLField(max_length=255), | ||
), | ||
] |
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