Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
feudal
feudalBackend
Commits
2038fdda
Commit
2038fdda
authored
Jul 24, 2018
by
Lukas Burgey
Browse files
Fix the broken import paths
parent
db04b3d1
Changes
88
Show whitespace changes
Inline
Side-by-side
migrations/0018_oidcconfig_name.py
0 → 100644
View file @
2038fdda
# -*- coding: utf-8 -*-
# Generated by Django 1.11.7 on 2018-03-01 14:22
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'backend'
,
'0017_auto_20180228_1601'
),
]
operations
=
[
migrations
.
AddField
(
model_name
=
'oidcconfig'
,
name
=
'name'
,
field
=
models
.
CharField
(
default
=
'bar'
,
max_length
=
200
),
preserve_default
=
False
,
),
]
migrations/0019_user_idp.py
0 → 100644
View file @
2038fdda
# -*- coding: utf-8 -*-
# Generated by Django 1.11.7 on 2018-03-02 10:53
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
import
django.db.models.deletion
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'backend'
,
'0018_oidcconfig_name'
),
]
operations
=
[
migrations
.
AddField
(
model_name
=
'user'
,
name
=
'idp'
,
field
=
models
.
ForeignKey
(
default
=
3
,
on_delete
=
django
.
db
.
models
.
deletion
.
CASCADE
,
related_name
=
'users'
,
to
=
'backend.OIDCConfig'
),
),
]
migrations/0020_auto_20180302_1053.py
0 → 100644
View file @
2038fdda
# -*- coding: utf-8 -*-
# Generated by Django 1.11.7 on 2018-03-02 10:53
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
import
django.db.models.deletion
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'backend'
,
'0019_user_idp'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'user'
,
name
=
'idp'
,
field
=
models
.
ForeignKey
(
on_delete
=
django
.
db
.
models
.
deletion
.
CASCADE
,
related_name
=
'users'
,
to
=
'backend.OIDCConfig'
),
),
]
migrations/0021_rabbitmqinstance_vhost.py
0 → 100644
View file @
2038fdda
# -*- coding: utf-8 -*-
# Generated by Django 1.11.7 on 2018-03-02 13:29
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'backend'
,
'0020_auto_20180302_1053'
),
]
operations
=
[
migrations
.
AddField
(
model_name
=
'rabbitmqinstance'
,
name
=
'vhost'
,
field
=
models
.
CharField
(
default
=
'%2f'
,
max_length
=
150
),
),
]
migrations/0022_user_userinfo.py
0 → 100644
View file @
2038fdda
# -*- coding: utf-8 -*-
# Generated by Django 1.11.7 on 2018-03-05 13:33
from
__future__
import
unicode_literals
from
django.db
import
migrations
import
django_backend.backend.models
import
django_mysql.models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'backend'
,
'0021_rabbitmqinstance_vhost'
),
]
operations
=
[
migrations
.
AddField
(
model_name
=
'user'
,
name
=
'userinfo'
,
field
=
django_mysql
.
models
.
JSONField
(
blank
=
True
,
default
=
django_backend
.
backend
.
user_models
.
user_info_default
,
null
=
True
),
),
]
migrations/0023_auto_20180305_1520.py
0 → 100644
View file @
2038fdda
# -*- coding: utf-8 -*-
# Generated by Django 1.11.7 on 2018-03-05 15:20
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
import
django.db.models.deletion
import
django_backend.backend.models
import
django_mysql.models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'backend'
,
'0022_user_userinfo'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'user'
,
name
=
'idp'
,
field
=
models
.
ForeignKey
(
editable
=
False
,
on_delete
=
django
.
db
.
models
.
deletion
.
CASCADE
,
related_name
=
'users'
,
to
=
'backend.OIDCConfig'
),
),
migrations
.
AlterField
(
model_name
=
'user'
,
name
=
'password'
,
field
=
models
.
CharField
(
blank
=
True
,
editable
=
False
,
max_length
=
150
,
null
=
True
),
),
migrations
.
AlterField
(
model_name
=
'user'
,
name
=
'userinfo'
,
field
=
django_mysql
.
models
.
JSONField
(
blank
=
True
,
default
=
django_backend
.
backend
.
user_models
.
user_info_default
,
editable
=
False
,
null
=
True
),
),
]
migrations/0024_auto_20180305_1522.py
0 → 100644
View file @
2038fdda
# -*- coding: utf-8 -*-
# Generated by Django 1.11.7 on 2018-03-05 15:22
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
import
django.db.models.deletion
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'backend'
,
'0023_auto_20180305_1520'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'user'
,
name
=
'idp'
,
field
=
models
.
ForeignKey
(
blank
=
True
,
editable
=
False
,
null
=
True
,
on_delete
=
django
.
db
.
models
.
deletion
.
CASCADE
,
related_name
=
'users'
,
to
=
'backend.OIDCConfig'
),
),
migrations
.
AlterField
(
model_name
=
'user'
,
name
=
'sub'
,
field
=
models
.
CharField
(
blank
=
True
,
editable
=
False
,
max_length
=
150
,
null
=
True
),
),
]
migrations/0025_auto_20180306_0943.py
0 → 100644
View file @
2038fdda
# -*- coding: utf-8 -*-
# Generated by Django 1.11.7 on 2018-03-06 09:43
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'backend'
,
'0024_auto_20180305_1522'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'sshpublickey'
,
name
=
'name'
,
field
=
models
.
CharField
(
max_length
=
150
),
),
]
migrations/0026_auto_20180316_1500.py
0 → 100644
View file @
2038fdda
# -*- coding: utf-8 -*-
# Generated by Django 1.11.7 on 2018-03-16 15:00
from
__future__
import
unicode_literals
from
django.conf
import
settings
from
django.db
import
migrations
,
models
import
django.db.models.deletion
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'backend'
,
'0025_auto_20180306_0943'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'site'
,
name
=
'client'
,
field
=
models
.
OneToOneField
(
blank
=
True
,
null
=
True
,
on_delete
=
django
.
db
.
models
.
deletion
.
SET_NULL
,
related_name
=
'site'
,
to
=
settings
.
AUTH_USER_MODEL
),
),
migrations
.
AlterField
(
model_name
=
'user'
,
name
=
'password'
,
field
=
models
.
CharField
(
blank
=
True
,
max_length
=
150
,
null
=
True
),
),
]
migrations/0027_remove_rabbitmqinstance_path.py
0 → 100644
View file @
2038fdda
# -*- coding: utf-8 -*-
# Generated by Django 1.11.7 on 2018-03-16 15:17
from
__future__
import
unicode_literals
from
django.db
import
migrations
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'backend'
,
'0026_auto_20180316_1500'
),
]
operations
=
[
migrations
.
RemoveField
(
model_name
=
'rabbitmqinstance'
,
name
=
'path'
,
),
]
migrations/0028_remove_rabbitmqinstance_is_active.py
0 → 100644
View file @
2038fdda
# -*- coding: utf-8 -*-
# Generated by Django 1.11.7 on 2018-03-16 15:18
from
__future__
import
unicode_literals
from
django.db
import
migrations
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'backend'
,
'0027_remove_rabbitmqinstance_path'
),
]
operations
=
[
migrations
.
RemoveField
(
model_name
=
'rabbitmqinstance'
,
name
=
'is_active'
,
),
]
migrations/0029_auto_20180426_1413.py
0 → 100644
View file @
2038fdda
# Generated by Django 2.0.4 on 2018-04-26 14:13
from
django.conf
import
settings
from
django.db
import
migrations
,
models
import
django.db.models.deletion
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'backend'
,
'0028_remove_rabbitmqinstance_is_active'
),
]
operations
=
[
migrations
.
CreateModel
(
name
=
'AuthGroup'
,
fields
=
[
(
'id'
,
models
.
AutoField
(
auto_created
=
True
,
primary_key
=
True
,
serialize
=
False
,
verbose_name
=
'ID'
)),
(
'name'
,
models
.
CharField
(
max_length
=
200
)),
],
),
migrations
.
AddField
(
model_name
=
'oidcconfig'
,
name
=
'group_provider'
,
field
=
models
.
BooleanField
(
default
=
False
),
),
migrations
.
AlterField
(
model_name
=
'sshpublickey'
,
name
=
'user'
,
field
=
models
.
ForeignKey
(
null
=
True
,
on_delete
=
django
.
db
.
models
.
deletion
.
SET_NULL
,
related_name
=
'_ssh_keys'
,
to
=
settings
.
AUTH_USER_MODEL
),
),
migrations
.
AlterField
(
model_name
=
'user'
,
name
=
'last_name'
,
field
=
models
.
CharField
(
blank
=
True
,
max_length
=
150
,
verbose_name
=
'last name'
),
),
migrations
.
AlterField
(
model_name
=
'user'
,
name
=
'user_type'
,
field
=
models
.
CharField
(
choices
=
[(
'apiclient'
,
'API-Client'
),
(
'oidcuser'
,
'OIDC User'
),
(
'admin'
,
'Admin'
)],
default
=
'apiclient'
,
max_length
=
20
),
),
migrations
.
AddField
(
model_name
=
'authgroup'
,
name
=
'users'
,
field
=
models
.
ManyToManyField
(
related_name
=
'auth_groups'
,
to
=
settings
.
AUTH_USER_MODEL
),
),
]
migrations/0030_auto_20180426_1416.py
0 → 100644
View file @
2038fdda
# Generated by Django 2.0.4 on 2018-04-26 14:16
from
django.conf
import
settings
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'backend'
,
'0029_auto_20180426_1413'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'authgroup'
,
name
=
'users'
,
field
=
models
.
ManyToManyField
(
blank
=
True
,
related_name
=
'auth_groups'
,
to
=
settings
.
AUTH_USER_MODEL
),
),
]
migrations/0031_deploymenttask_user.py
0 → 100644
View file @
2038fdda
# Generated by Django 2.0.4 on 2018-04-26 14:17
from
django.conf
import
settings
from
django.db
import
migrations
,
models
import
django.db.models.deletion
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'backend'
,
'0030_auto_20180426_1416'
),
]
operations
=
[
migrations
.
AddField
(
model_name
=
'deploymenttask'
,
name
=
'user'
,
field
=
models
.
ForeignKey
(
default
=
49
,
on_delete
=
django
.
db
.
models
.
deletion
.
CASCADE
,
related_name
=
'deployment_tasks'
,
to
=
settings
.
AUTH_USER_MODEL
),
preserve_default
=
False
,
),
]
migrations/0032_deploymenttaskitem_user.py
0 → 100644
View file @
2038fdda
# Generated by Django 2.0.4 on 2018-04-27 09:27
from
django.conf
import
settings
from
django.db
import
migrations
,
models
import
django.db.models.deletion
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'backend'
,
'0031_deploymenttask_user'
),
]
operations
=
[
migrations
.
AddField
(
model_name
=
'deploymenttaskitem'
,
name
=
'user'
,
field
=
models
.
ForeignKey
(
default
=
49
,
on_delete
=
django
.
db
.
models
.
deletion
.
CASCADE
,
related_name
=
'deployment_task_items'
,
to
=
settings
.
AUTH_USER_MODEL
),
preserve_default
=
False
,
),
]
migrations/0033_deploymenttaskitem_state.py
0 → 100644
View file @
2038fdda
# Generated by Django 2.0.4 on 2018-06-12 13:58
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'backend'
,
'0032_deploymenttaskitem_user'
),
]
operations
=
[
migrations
.
AddField
(
model_name
=
'deploymenttaskitem'
,
name
=
'state'
,
field
=
models
.
CharField
(
choices
=
[(
'pending'
,
'Pending'
),
(
'done'
,
'Done'
),
(
'chanceled'
,
'Chanceled'
),
(
'failed'
,
'Failed'
),
(
'rejected'
,
'Rejected'
)],
default
=
'pending'
,
max_length
=
20
),
),
]
migrations/0034_deploymenttaskitem_questionnaire.py
0 → 100644
View file @
2038fdda
# Generated by Django 2.0.4 on 2018-06-12 15:40
from
django.db
import
migrations
import
django_backend.backend.models
import
django_mysql.models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'backend'
,
'0033_deploymenttaskitem_state'
),
]
operations
=
[
migrations
.
AddField
(
model_name
=
'deploymenttaskitem'
,
name
=
'questionnaire'
,
field
=
django_mysql
.
models
.
JSONField
(
blank
=
True
,
default
=
django_backend
.
backend
.
models
.
questionnaire_default
,
null
=
True
),
),
]
migrations/0035_auto_20180615_1319.py
0 → 100644
View file @
2038fdda
# Generated by Django 2.0.4 on 2018-06-15 13:19
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'backend'
,
'0034_deploymenttaskitem_questionnaire'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'deploymenttaskitem'
,
name
=
'state'
,
field
=
models
.
CharField
(
choices
=
[(
'pending'
,
'Pending'
),
(
'done'
,
'Done'
),
(
'chanceled'
,
'Chanceled'
),
(
'failed'
,
'Failed'
),
(
'rejected'
,
'Rejected'
),
(
'answered'
,
'Answered'
)],
default
=
'pending'
,
max_length
=
20
),
),
]
migrations/0036_remove_rabbitmqinstance_exchange.py
0 → 100644
View file @
2038fdda
# Generated by Django 2.0.4 on 2018-06-15 13:42
from
django.db
import
migrations
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'backend'
,
'0035_auto_20180615_1319'
),
]
operations
=
[
migrations
.
RemoveField
(
model_name
=
'rabbitmqinstance'
,
name
=
'exchange'
,
),
]
migrations/0037_rabbitmqinstance_exchanges.py
0 → 100644
View file @
2038fdda
# Generated by Django 2.0.4 on 2018-06-15 14:28
from
django.db
import
migrations
import
django_backend.backend.models
import
django_mysql.models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'backend'
,
'0036_remove_rabbitmqinstance_exchange'
),
]
operations
=
[
migrations
.
AddField
(
model_name
=
'rabbitmqinstance'
,
name
=
'exchanges'
,
field
=
django_mysql
.
models
.
JSONField
(
blank
=
True
,
default
=
django_backend
.
backend
.
broker_models
.
exchanges_default
,
editable
=
False
,
null
=
True
),
),
]
Prev
1
2
3
4
5
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment