Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Gepetto
dashboard
Commits
294cdfa3
Commit
294cdfa3
authored
May 26, 2020
by
Guilhem Saurel
Browse files
from_gepetto defaults to False
parent
890ef0ce
Pipeline
#9682
passed with stage
in 3 minutes
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
rainboard/migrations/0043_auto_20200526_0831.py
0 → 100644
View file @
294cdfa3
# Generated by Django 3.0.5 on 2020-05-26 06:31
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'rainboard'
,
'0042_gepgitlab_to_gitlab'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'project'
,
name
=
'from_gepetto'
,
field
=
models
.
BooleanField
(
default
=
False
),
),
]
rainboard/models.py
View file @
294cdfa3
...
...
@@ -189,7 +189,7 @@ class Project(Links, NamedModel, TimeStampedModel):
updated
=
models
.
DateTimeField
(
blank
=
True
,
null
=
True
)
tests
=
models
.
BooleanField
(
default
=
True
)
docs
=
models
.
BooleanField
(
default
=
True
)
from_gepetto
=
models
.
BooleanField
(
default
=
Tru
e
)
from_gepetto
=
models
.
BooleanField
(
default
=
Fals
e
)
cmake_name
=
models
.
CharField
(
max_length
=
200
,
blank
=
True
,
null
=
True
)
archived
=
models
.
BooleanField
(
default
=
False
)
suffix
=
models
.
CharField
(
max_length
=
50
,
default
=
''
,
blank
=
True
)
...
...
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