new
parent
a4acc678a4
commit
3a1a6aad3d
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.2.5 on 2024-08-14 06:26
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('osinacore', '0097_remove_status_date_remove_status_time'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RenameField(
|
||||
model_name='projectcredential',
|
||||
old_name='emailorusername',
|
||||
new_name='identifier',
|
||||
),
|
||||
]
|
@ -0,0 +1,22 @@
|
||||
# Generated by Django 4.2.5 on 2024-08-14 06:31
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('osinacore', '0098_rename_emailorusername_projectcredential_identifier'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='projectcredential',
|
||||
name='usedfor',
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='projectcredential',
|
||||
name='description',
|
||||
field=models.TextField(blank=True, null=True),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.2.5 on 2024-08-14 06:33
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('osinacore', '0099_remove_projectcredential_usedfor_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='projectcredential',
|
||||
name='date_added',
|
||||
field=models.DateTimeField(null=True),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.2.5 on 2024-08-14 07:02
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('osinacore', '0100_projectcredential_date_added'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RenameField(
|
||||
model_name='projectfile',
|
||||
old_name='date',
|
||||
new_name='date_added',
|
||||
),
|
||||
]
|
@ -0,0 +1,30 @@
|
||||
# Generated by Django 4.2.5 on 2024-08-14 07:06
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('osinacore', '0101_rename_date_projectfile_date_added'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='projectfile',
|
||||
name='date_added',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='projectfile',
|
||||
name='file',
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='ProjectFileAlbum',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('date_added', models.DateField()),
|
||||
('projectfile', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='osinacore.projectfile')),
|
||||
],
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.2.5 on 2024-08-14 07:08
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('osinacore', '0102_remove_projectfile_date_added_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='projectfilealbum',
|
||||
name='date_added',
|
||||
field=models.DateTimeField(),
|
||||
),
|
||||
]
|
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.2.5 on 2024-08-14 07:13
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('osinacore', '0103_alter_projectfilealbum_date_added'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='projectfilealbum',
|
||||
name='file',
|
||||
field=models.FileField(null=True, upload_to=''),
|
||||
),
|
||||
]
|
@ -0,0 +1,59 @@
|
||||
# Generated by Django 4.2.5 on 2024-08-14 07:17
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('osinacore', '0104_projectfilealbum_file'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='projectfile',
|
||||
name='name',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='projectfile',
|
||||
name='project',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='projectfilealbum',
|
||||
name='date_added',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='projectfilealbum',
|
||||
name='file',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='projectfilealbum',
|
||||
name='projectfile',
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='projectfile',
|
||||
name='album',
|
||||
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='osinacore.projectfilealbum'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='projectfile',
|
||||
name='date_added',
|
||||
field=models.DateTimeField(null=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='projectfile',
|
||||
name='file',
|
||||
field=models.FileField(null=True, upload_to=''),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='projectfilealbum',
|
||||
name='name',
|
||||
field=models.CharField(max_length=350, null=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='projectfilealbum',
|
||||
name='project',
|
||||
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='osinacore.project'),
|
||||
),
|
||||
]
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue