TruncateTable.php
809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
namespace Database;
use Illuminate\Support\Facades\DB;
/**
* Class TruncateTable.
*/
trait TruncateTable
{
/**
* @param $table
*
* @return bool
*/
protected function truncate($table)
{
switch (DB::getDriverName()) {
case 'mysql':
return DB::table($table)->truncate();
case 'pgsql':
return DB::statement('TRUNCATE TABLE '.$table.' RESTART IDENTITY CASCADE');
case 'sqlite': case 'sqlsrv':
return DB::statement('DELETE FROM '.$table);
}
return false;
}
/**
* @param array $tables
*/
protected function truncateMultiple(array $tables)
{
foreach ($tables as $table) {
$this->truncate($table);
}
}
}