migrations: formatting

This commit is contained in:
Igor Scheller 2018-12-30 15:10:04 +01:00
parent d208cab1ac
commit 99126cab0c
2 changed files with 4 additions and 3 deletions

View File

@ -193,7 +193,7 @@ class CreateUsersTables extends Migration
$table->tinyInteger('color')->default(10)->nullable();
$table->char('Sprache', 64)->nullable();
$table->char('Menu', 1)->default('L');
$table->integer('lastLogIn');
$table->integer('lastLogIn')->nullable();
$table->dateTime('CreateDate')->default('0001-01-01 00:00:00');
$table->char('Art', 30)->nullable();
$table->text('kommentar')->nullable();

View File

@ -23,5 +23,6 @@ class FixMissingArrivalDates extends Migration
* Down is not possible and not needed since this is a bugfix.
*/
public function down()
{}
{
}
}