-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
08 - Add a custom entity Location #13
Open
luca-rath
wants to merge
1
commit into
assignment/07
Choose a base branch
from
assignment/08
base: assignment/07
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
e19cf25
to
df929f6
Compare
df929f6
to
4ca8ac4
Compare
f4309d8
to
2146712
Compare
d7d49ad
to
be1cc5a
Compare
70dda22
to
aa37348
Compare
be1cc5a
to
7dc36da
Compare
fe62546
to
c9eee32
Compare
86e0853
to
c670881
Compare
c9eee32
to
1db527d
Compare
d4e28bb
to
62cab3f
Compare
1db527d
to
fc8d2d1
Compare
62cab3f
to
cb3a102
Compare
fc8d2d1
to
32dc12b
Compare
cb3a102
to
7b5279e
Compare
250d87c
to
ec308df
Compare
19a62d0
to
b5ee042
Compare
ec308df
to
9a5c2e1
Compare
b5ee042
to
ab4aa3f
Compare
9a5c2e1
to
8c1549c
Compare
ab4aa3f
to
a055186
Compare
8c1549c
to
1dbefda
Compare
a5c4c4d
to
8c34b43
Compare
a11e0d3
to
620b0c2
Compare
bc4eb53
to
7828743
Compare
75f3ced
to
b67296b
Compare
7828743
to
138928b
Compare
b67296b
to
7e82250
Compare
138928b
to
7781a65
Compare
d9445b1
to
c32194a
Compare
1eb6882
to
31d532e
Compare
c32194a
to
28a5b6c
Compare
31d532e
to
b165370
Compare
28a5b6c
to
8d5d177
Compare
8d5d177
to
cfd2480
Compare
abf77bf
to
8743286
Compare
cfd2480
to
7589c1e
Compare
d2ce609
to
906becf
Compare
7589c1e
to
c72af76
Compare
906becf
to
25fee79
Compare
c72af76
to
b63f2f8
Compare
25fee79
to
bab0d28
Compare
b63f2f8
to
84af386
Compare
bab0d28
to
23c93cb
Compare
84af386
to
4d728de
Compare
1324c8f
to
fc28698
Compare
4d728de
to
c38fd1f
Compare
c38fd1f
to
f635af0
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Add a custom entity
Location
Goal
We are managing more and more events that take place at the same location. Because our content managers do not want
to enter the same location information over and over again we would like to provide a central place for managing the
locations of our events.
As this task is quite complex, we are going to break down the requirements into smaller pieces and multiple
assignments. In this assignment, we want to add a new
Location
entity to our database model.Steps
Location
entity with the following properties:name
street
city
countryCode
bin/adminconsole doctrine:schema:update --force
Hints
bin/adminconsole make:entity Location
bin/adminconsole doctrine:schema:validate
More Information
This assignment is purely based on Symfony. No Sulu knowledge required ;-)
Links