Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Debian New Member Process
nm.debian.org
Commits
d85d258d
Commit
d85d258d
authored
May 31, 2016
by
Enrico Zini
Browse files
Added missing migration
parent
764b2d8f
Changes
1
Hide whitespace changes
Inline
Side-by-side
process/migrations/0002_auto_20160531_1920.py
0 → 100644
View file @
d85d258d
# -*- coding: utf-8 -*-
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
from
django.conf
import
settings
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'process'
,
'0001_squashed_0014_auto_20160530_0851'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'statement'
,
name
=
'uploaded_by'
,
field
=
models
.
ForeignKey
(
related_name
=
'+'
,
to
=
settings
.
AUTH_USER_MODEL
,
help_text
=
'Person who uploaded the statement'
),
),
migrations
.
AlterField
(
model_name
=
'statement'
,
name
=
'uploaded_time'
,
field
=
models
.
DateTimeField
(
help_text
=
'When the statement has been uploaded'
),
),
]
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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