Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Gutyán Gábor
/
circlestack
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
aa47ae5b
authored
Apr 07, 2015
by
Bach Dániel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
request: add migration
parent
fcb919cb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
0 deletions
+38
-0
circle/request/migrations/0002_auto_20150407_1117.py
+38
-0
No files found.
circle/request/migrations/0002_auto_20150407_1117.py
0 → 100644
View file @
aa47ae5b
# -*- coding: utf-8 -*-
from
__future__
import
unicode_literals
from
django.db
import
models
,
migrations
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'request'
,
'0001_initial'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'leasetype'
,
name
=
'lease'
,
field
=
models
.
ForeignKey
(
verbose_name
=
'Lease'
,
to
=
'vm.Lease'
),
preserve_default
=
True
,
),
migrations
.
AlterField
(
model_name
=
'leasetype'
,
name
=
'name'
,
field
=
models
.
CharField
(
max_length
=
25
,
verbose_name
=
'Name'
),
preserve_default
=
True
,
),
migrations
.
AlterField
(
model_name
=
'templateaccesstype'
,
name
=
'name'
,
field
=
models
.
CharField
(
max_length
=
25
,
verbose_name
=
'Name'
),
preserve_default
=
True
,
),
migrations
.
AlterField
(
model_name
=
'templateaccesstype'
,
name
=
'templates'
,
field
=
models
.
ManyToManyField
(
to
=
'vm.InstanceTemplate'
,
verbose_name
=
'Templates'
),
preserve_default
=
True
,
),
]
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