Skip to content
Snippets Groups Projects
Commit 8532802b authored by Nico Vermaas's avatar Nico Vermaas
Browse files

database change

parent 2b93a455
No related branches found
No related tags found
No related merge requests found
Pipeline #7162 passed
...@@ -19,7 +19,6 @@ services: ...@@ -19,7 +19,6 @@ services:
- atdb_network - atdb_network
volumes: volumes:
- $HOME/shared:/shared - $HOME/shared:/shared
- database-data:/var/lib/postgresql/data/
restart: always restart: always
atdb-backend: atdb-backend:
...@@ -41,6 +40,3 @@ services: ...@@ -41,6 +40,3 @@ services:
depends_on: depends_on:
- atdb-ldv-db - atdb-ldv-db
restart: always restart: always
volumes:
database-data:
\ No newline at end of file
# Generated by Django 3.1.4 on 2020-12-18 12:18
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('taskdatabase', '0001_initial'),
]
operations = [
migrations.RemoveField(
model_name='taskobject',
name='irods_collection',
),
]
...@@ -37,7 +37,6 @@ class TaskObject(models.Model): ...@@ -37,7 +37,6 @@ class TaskObject(models.Model):
new_status = models.CharField(max_length=50, default="defined", null=True) new_status = models.CharField(max_length=50, default="defined", null=True)
data_location = models.CharField(max_length=255, default="unknown",null=True) data_location = models.CharField(max_length=255, default="unknown",null=True)
irods_collection = models.CharField(max_length=255, default="unknown", null=True)
# my_status is 'platgeslagen', because django-filters can not filter on a related property, # my_status is 'platgeslagen', because django-filters can not filter on a related property,
# and I need services to be able to filter on a status to execute their tasks. # and I need services to be able to filter on a status to execute their tasks.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment