2FAuth/database/migrations/2019_05_16_162730_create_twofaccounts_table.php
2019-06-10 23:42:13 +02:00

37 lines
808 B
PHP

<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateTwoFAccountsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('twofaccounts', function (Blueprint $table) {
$table->increments('id');
$table->string('name')->unique();
$table->string('uri');
$table->string('email');
$table->string('icon')->nullable();
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('twofaccounts');
}
}