Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
519cc688
Commit
519cc688
authored
Jan 16, 2014
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1995 from Ragazzo/fix_for_fixture_controller
changed truncate to delete
parents
c5022203
f154a642
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
2 deletions
+3
-2
CHANGELOG.md
framework/CHANGELOG.md
+1
-0
FixtureController.php
framework/console/controllers/FixtureController.php
+1
-1
DbFixtureManager.php
framework/test/DbFixtureManager.php
+1
-1
No files found.
framework/CHANGELOG.md
View file @
519cc688
...
...
@@ -25,6 +25,7 @@ Yii Framework 2 Change Log
-
Bug #1798: Fixed label attributes for array fields (zhuravljov)
-
Bug #1800: Better check for
`$_SERVER['HTTPS']`
in
`yii\web\Request::getIsSecureConnection()`
(ginus, samdark)
-
Bug #1827: Debugger toolbar is loaded twice if an action is calling
`run()`
to execute another action (qiangxue)
-
Bug #1869: Fixed tables clearing.
`TRUNCATE`
changed to
`DELETE`
to avoid postgresql tables checks (and truncating all tables) (Ragazzo)
-
Bug #1870: Validation errors weren't properly translated when using clientside validation (samdark)
-
Bug #1937: Fixed wrong behavior or advanced app's
`init --env`
when called without parameter actually specified (samdark)
-
Bug #1959:
`Html::activeCheckbox`
wasn't respecting custom values for checked/unchecked state (klevron, samdark)
...
...
framework/console/controllers/FixtureController.php
View file @
519cc688
...
...
@@ -175,7 +175,7 @@ class FixtureController extends Controller
$this
->
getDbConnection
()
->
createCommand
()
->
checkIntegrity
(
false
)
->
execute
();
foreach
(
$tables
as
$table
)
{
$this
->
getDbConnection
()
->
createCommand
()
->
truncateTabl
e
(
$table
)
->
execute
();
$this
->
getDbConnection
()
->
createCommand
()
->
delet
e
(
$table
)
->
execute
();
$this
->
getDbConnection
()
->
createCommand
()
->
resetSequence
(
$table
)
->
execute
();
$this
->
stdout
(
" Table
\"
{
$table
}
\"
was successfully cleared.
\n
"
,
Console
::
FG_GREEN
);
}
...
...
framework/test/DbFixtureManager.php
View file @
519cc688
...
...
@@ -142,7 +142,7 @@ class DbFixtureManager extends Component
throw
new
InvalidConfigException
(
"Table does not exist:
$tableName
"
);
}
$this
->
db
->
createCommand
()
->
truncateTabl
e
(
$tableName
)
->
execute
();
$this
->
db
->
createCommand
()
->
delet
e
(
$tableName
)
->
execute
();
$this
->
db
->
createCommand
()
->
resetSequence
(
$tableName
,
1
)
->
execute
();
$fileName
=
$this
->
basePath
.
'/'
.
$tableName
.
'.php'
;
...
...
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