2FAuth/database/migrations/2019_05_16_162730_create_twofaccounts_table.php

37 lines
808 B
PHP
Raw Normal View History

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