このコミットが含まれているのは:
守矢諏訪子 2022-02-18 17:36:43 +09:00
コミット 91b33aa65f
2個のファイルの変更5行の追加5行の削除

ファイルの表示

@ -15,8 +15,8 @@ class CreateManageFailureLoginsTable extends Migration
{ {
Schema::create('manage_failure_logins', function (Blueprint $table) { Schema::create('manage_failure_logins', function (Blueprint $table) {
$table->id(); $table->id();
$table->string('email', 255)->unique(); $table->string('email', 255);
$table->string('password', 255)->unique(); $table->string('password', 255);
$table->timestamps(); $table->timestamps();
}); });
} }

ファイルの表示

@ -15,9 +15,9 @@ class CreateManageVisitersTable extends Migration
{ {
Schema::create('manage_visiters', function (Blueprint $table) { Schema::create('manage_visiters', function (Blueprint $table) {
$table->id(); $table->id();
$table->string('ip_address', 20)->unique(); $table->string('ip_address', 20);
$table->string('host', 255)->unique(); $table->string('host', 255);
$table->string('user_agent', 255)->unique(); $table->string('user_agent', 255);
$table->timestamps(); $table->timestamps();
}); });
} }