Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
PizzaWeb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sofiane Lasri
PizzaWeb
Commits
188b859d
Commit
188b859d
authored
2 years ago
by
Sofiane Lasri
Browse files
Options
Downloads
Patches
Plain Diff
Création des migrations
parent
b4f939b5
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
applipizza/models.py
+29
-0
29 additions, 0 deletions
applipizza/models.py
with
29 additions
and
0 deletions
applipizza/models.py
+
29
−
0
View file @
188b859d
from
django.db
import
models
# Create your models here.
# Ingredients
class
Ingredient
(
models
.
Model
):
id
=
models
.
AutoField
(
primary_key
=
True
)
nom
=
models
.
CharField
(
max_length
=
50
,
verbose_name
=
"
Nom de l
'
ingrédient
"
)
def
__str__
(
self
)
->
str
:
return
self
.
nom
# Pizza
class
Pizza
(
models
.
Model
):
id
=
models
.
AutoField
(
primary_key
=
True
)
nom
=
models
.
CharField
(
max_length
=
50
,
verbose_name
=
"
Nom de la pizza
"
)
prix
=
models
.
FloatField
(
verbose_name
=
"
Prix de la pizza
"
)
def
__str__
(
self
)
->
str
:
return
self
.
nom
# Composition
class
Composition
(
models
.
Model
):
id
=
models
.
AutoField
(
primary_key
=
True
)
pizza
=
models
.
ForeignKey
(
Pizza
,
on_delete
=
models
.
CASCADE
)
ingredient
=
models
.
ForeignKey
(
Ingredient
,
on_delete
=
models
.
CASCADE
)
quantite
=
models
.
FloatField
(
verbose_name
=
"
Quantité de l
'
ingrédient
"
)
def
__str__
(
self
)
->
str
:
return
f
"
{
self
.
pizza
}
-
{
self
.
ingredient
}
-
{
self
.
quantite
}
"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment