diff --git a/database/migrations/2019_01_08_025935_create_allowed_logins_table.php b/database/migrations/2019_01_08_025935_create_allowed_logins_table.php deleted file mode 100644 index 71bac9020..000000000 --- a/database/migrations/2019_01_08_025935_create_allowed_logins_table.php +++ /dev/null @@ -1,35 +0,0 @@ -increments('id'); - $table->string('entity_id'); - $table->string('entity_type'); - $table->timestamps(); - }); - } - } - - /** - * Reverse the migrations. - * - * @return void - */ - public function down() - { - Schema::dropIfExists('allowed_logins'); - } -}