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
AE UTBM
Sith
Commits
b2f13e93
Commit
b2f13e93
authored
Aug 26, 2016
by
Skia
🤘
Browse files
Add missing migration
parent
3e0b964e
Pipeline
#144
failed with stage
in 2 minutes and 37 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
counter/migrations/0005_auto_20160826_2330.py
0 → 100644
View file @
b2f13e93
# -*- coding: utf-8 -*-
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'counter'
,
'0004_auto_20160826_1907'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'counter'
,
name
=
'club'
,
field
=
models
.
ForeignKey
(
verbose_name
=
'club'
,
to
=
'club.Club'
,
related_name
=
'counters'
),
),
migrations
.
AlterField
(
model_name
=
'counter'
,
name
=
'products'
,
field
=
models
.
ManyToManyField
(
blank
=
True
,
related_name
=
'counters'
,
to
=
'counter.Product'
,
verbose_name
=
'products'
),
),
migrations
.
AlterField
(
model_name
=
'permanency'
,
name
=
'activity'
,
field
=
models
.
DateTimeField
(
auto_now
=
True
,
verbose_name
=
'last activity date'
),
),
]
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