Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
U
UserAdminV2
Overview
Overview
Details
Activity
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
庄欣
UserAdminV2
Commits
75f63847
Commit
75f63847
authored
Mar 30, 2012
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix eloquent->delete bug.
parent
b870ac09
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
3 deletions
+14
-3
laravel/database/eloquent/model.php
+13
-0
laravel/database/eloquent/relationships/has_many_and_belongs_to.php
+1
-3
No files found.
laravel/database/eloquent/model.php
View file @
75f63847
...
...
@@ -379,6 +379,19 @@ abstract class Model {
}
/**
* Delete the model from the database.
*
* @return int
*/
public
function
delete
()
{
if
(
$this
->
exists
)
{
return
$this
->
query
()
->
where
(
static
::
$key
,
'='
,
$this
->
get_key
())
->
delete
();
}
}
/**
* Set the update and creation timestamps on the model.
*
* @return void
...
...
laravel/database/eloquent/relationships/has_many_and_belongs_to.php
View file @
75f63847
...
...
@@ -125,9 +125,7 @@ class Has_Many_And_Belongs_To extends Relationship {
*/
public
function
delete
()
{
$id
=
$this
->
base
->
get_key
();
return
$this
->
joining_table
()
->
where
(
$this
->
foreign_key
(),
'='
,
$id
)
->
delete
();
return
$this
->
pivot
()
->
delete
();
}
/**
...
...
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