Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
syncEnrollments
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Yeray Santana Hualde
syncEnrollments
Commits
e540fd3b
Commit
e540fd3b
authored
Mar 19, 2012
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Automatically detect eloquent table names.
parent
26afb000
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
2 deletions
+14
-2
model.php
laravel/database/eloquent/model.php
+11
-0
has_many_and_belongs_to.php
...tabase/eloquent/relationships/has_many_and_belongs_to.php
+3
-2
No files found.
laravel/database/eloquent/model.php
View file @
e540fd3b
<?php
namespace
Laravel\Database\Eloquent
;
use
Laravel\Str
;
use
Laravel\Database
;
use
Laravel\Database\Eloquent\Relationships\Has_Many_And_Belongs_To
;
...
...
@@ -418,6 +419,16 @@ abstract class Model {
return
!
$this
->
exists
or
$this
->
original
!==
$this
->
attributes
;
}
/**
* Get the name of the table associated with the model.
*
* @return string
*/
public
function
table
()
{
return
static
::
$table
?:
strtolower
(
Str
::
plural
(
basename
(
get_class
(
$this
))));
}
/**
* Get the dirty attributes for the model.
*
...
...
laravel/database/eloquent/relationships/has_many_and_belongs_to.php
View file @
e540fd3b
<?php
namespace
Laravel\Database\Eloquent\Relationships
;
use
Laravel\Str
;
use
Laravel\Database\Eloquent\Model
;
use
Laravel\Database\Eloquent\Pivot
;
...
...
@@ -48,7 +49,7 @@ class Has_Many_And_Belongs_To extends Relationship {
/**
* Determine the joining table name for the relationship.
*
* By default, the name is the models sorted and
concatenated with an underscore
.
* By default, the name is the models sorted and
joined with underscores
.
*
* @return string
*/
...
...
@@ -140,7 +141,7 @@ class Has_Many_And_Belongs_To extends Relationship {
{
// All joining tables get creation and update timestamps automatically even though
// some developers may not need them. This just provides them if necessary since
// it would be a pain for the developer to maintain them manually.
// it would be a pain for the developer to maintain them
each
manually.
$attributes
[
'created_at'
]
=
$this
->
model
->
get_timestamp
();
$attributes
[
'updated_at'
]
=
$attributes
[
'created_at'
];
...
...
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