updated login controller with new tables and removed old use DB namespace to use eloquent models

This commit is contained in:
2019-02-05 01:16:21 -06:00
parent 98028bc1c6
commit 72db30f0e4
3 changed files with 12 additions and 23 deletions

View File

@@ -19,6 +19,7 @@ class CreateAllowedLoginsTable extends Migration
$table->string('entity_id');
$table->string('entity_type');
$table->string('entity_name');
$table->string('login_type');
$table->timestamps();
});
}