Files
laravel-google2fa-module/Database/Migrations/2022_12_01_120619_create_google2fas_table.php
2022-12-02 11:52:48 +08:00

35 lines
740 B
PHP

<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateGoogle2FAsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('google2fas', function (Blueprint $table) {
$table->id();
$table->morphs('subscriber');
$table->text('google2fa_secret')->nullable();
$table->boolean('status')->default(0);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('google2fas');
}
}