summaryrefslogtreecommitdiff
path: root/db/migrations/2018_10_01_000000_create_users_tables.php
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2018-12-30 15:10:04 +0100
committerIgor Scheller <igor.scheller@igorshp.de>2018-12-30 15:10:04 +0100
commit99126cab0c1d272d86be175923583105eee549d3 (patch)
tree1325b8e9750b169eb21b6a17e45d2da6ea78740f /db/migrations/2018_10_01_000000_create_users_tables.php
parentd208cab1ac17a958fcd070c67e07b56e6caadff9 (diff)
migrations: formatting
Diffstat (limited to 'db/migrations/2018_10_01_000000_create_users_tables.php')
-rw-r--r--db/migrations/2018_10_01_000000_create_users_tables.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrations/2018_10_01_000000_create_users_tables.php b/db/migrations/2018_10_01_000000_create_users_tables.php
index d6778c52..d8422ca0 100644
--- a/db/migrations/2018_10_01_000000_create_users_tables.php
+++ b/db/migrations/2018_10_01_000000_create_users_tables.php
@@ -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();