Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
beat
beat.web
Commits
15184dc8
Commit
15184dc8
authored
Sep 09, 2020
by
Samuel GAIST
Committed by
Flavio TARSETTI
Sep 14, 2020
Browse files
[plotters][migrations] Pre-commit cleanup
parent
8fa617f2
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
beat/web/plotters/migrations/0001_initial.py
View file @
15184dc8
This diff is collapsed.
Click to expand it.
beat/web/plotters/migrations/0002_cxx_backend.py
View file @
15184dc8
...
...
@@ -2,19 +2,30 @@
# Generated by Django 1.9.11 on 2016-11-09 11:05
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
from
django.db
import
migrations
from
django.db
import
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'
plotters
'
,
'
0001_initial
'
),
(
"
plotters
"
,
"
0001_initial
"
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'plotter'
,
name
=
'language'
,
field
=
models
.
CharField
(
choices
=
[(
b
'U'
,
b
'Unknown'
),
(
b
'C'
,
b
'C++'
),
(
b
'M'
,
b
'Matlab'
),
(
b
'P'
,
b
'Python'
),
(
b
'R'
,
b
'R'
)],
default
=
b
'P'
,
max_length
=
1
),
model_name
=
"plotter"
,
name
=
"language"
,
field
=
models
.
CharField
(
choices
=
[
(
b
"U"
,
b
"Unknown"
),
(
b
"C"
,
b
"C++"
),
(
b
"M"
,
b
"Matlab"
),
(
b
"P"
,
b
"Python"
),
(
b
"R"
,
b
"R"
),
],
default
=
b
"P"
,
max_length
=
1
,
),
),
]
beat/web/plotters/migrations/0002_plotter_sample_data.py
View file @
15184dc8
This diff is collapsed.
Click to expand it.
beat/web/plotters/migrations/0003_auto_20161123_1218.py
View file @
15184dc8
...
...
@@ -2,19 +2,30 @@
# Generated by Django 1.9.11 on 2016-11-23 12:18
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
from
django.db
import
migrations
from
django.db
import
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'
plotters
'
,
'
0002_cxx_backend
'
),
(
"
plotters
"
,
"
0002_cxx_backend
"
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'plotter'
,
name
=
'language'
,
field
=
models
.
CharField
(
choices
=
[(
b
'U'
,
b
'Unknown'
),
(
b
'C'
,
b
'Cxx'
),
(
b
'M'
,
b
'Matlab'
),
(
b
'P'
,
b
'Python'
),
(
b
'R'
,
b
'R'
)],
default
=
b
'P'
,
max_length
=
1
),
model_name
=
"plotter"
,
name
=
"language"
,
field
=
models
.
CharField
(
choices
=
[
(
b
"U"
,
b
"Unknown"
),
(
b
"C"
,
b
"Cxx"
),
(
b
"M"
,
b
"Matlab"
),
(
b
"P"
,
b
"Python"
),
(
b
"R"
,
b
"R"
),
],
default
=
b
"P"
,
max_length
=
1
,
),
),
]
beat/web/plotters/migrations/0004_merge.py
View file @
15184dc8
...
...
@@ -8,9 +8,8 @@ from django.db import migrations
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'
plotters
'
,
'
0003_auto_20161123_1218
'
),
(
'
plotters
'
,
'
0002_plotter_sample_data
'
),
(
"
plotters
"
,
"
0003_auto_20161123_1218
"
),
(
"
plotters
"
,
"
0002_plotter_sample_data
"
),
]
operations
=
[
]
operations
=
[]
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