blob: 0ae9a1a5e27ece39f651df13f2ca8504dde2a53a (
plain)
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
43
|
<?php
namespace Engelsystem\Migrations;
use Engelsystem\Database\Migration\Migration;
use Illuminate\Database\Schema\Blueprint;
class FixOldTables extends Migration
{
/**
* Run the migration
*/
public function up()
{
$connection = $this->schema->getConnection();
foreach (
[
'User' => 'CreateDate',
'NewsComments' => 'Datum',
] as $table => $column) {
if (!$this->schema->hasTable($table)) {
continue;
}
$connection
->table($table)
->where($column, '<', '0001-01-01 00:00:00')
->update([$column => '0001-01-01 00:00:00']);
$this->schema->table($table, function (Blueprint $table) use ($column) {
$table->dateTime($column)->default('0001-01-01 00:00:00')->change();
});
}
}
/**
* Reverse the migration
*/
public function down()
{
}
}
|