Logging.php

- apc cache and insert to db
- seeder
- users table add columns
This commit is contained in:
2019-11-21 11:17:01 +01:00
parent ffb9742efb
commit 8caa7c227b
3 changed files with 131 additions and 14 deletions

View File

@@ -18,6 +18,8 @@ class CreateUsersTable extends Migration
$table->string('name');
$table->string('email')->unique();
$table->string('password');
$table->string('full_name');
$table->string('ou');
$table->rememberToken();
$table->timestamps();