Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
thalia
concrexit
Commits
c2997a5e
Unverified
Commit
c2997a5e
authored
Jan 11, 2018
by
Thom Wiggers
📐
Browse files
Fix missing migration
parent
fde1665c
Changes
1
Hide whitespace changes
Inline
Side-by-side
website/events/migrations/0024_auto_20180111_1039.py
0 → 100644
View file @
c2997a5e
# Generated by Django 2.0.1 on 2018-01-11 09:39
import
datetime
from
django.db
import
migrations
,
models
import
django.db.models.deletion
import
django.db.models.query_utils
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'events'
,
'0023_auto_20180108_1249'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'registration'
,
name
=
'member'
,
field
=
models
.
ForeignKey
(
blank
=
True
,
limit_choices_to
=
django
.
db
.
models
.
query_utils
.
Q
((
'membership__until__isnull'
,
True
),
(
'membership__until__gt'
,
datetime
.
date
(
2018
,
1
,
11
)),
_connector
=
'OR'
),
null
=
True
,
on_delete
=
django
.
db
.
models
.
deletion
.
CASCADE
,
to
=
'members.Member'
),
),
]
Write
Preview
Supports
Markdown
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