2019-05-20 07:37:41 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
|
2019-05-24 14:44:41 +02:00
|
|
|
class CreateTwoFAccountsTable extends Migration
|
2019-05-20 07:37:41 +02:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function up()
|
|
|
|
{
|
2019-05-24 14:44:41 +02:00
|
|
|
Schema::create('twofaccounts', function (Blueprint $table) {
|
2019-05-20 07:37:41 +02:00
|
|
|
$table->increments('id');
|
|
|
|
$table->string('name')->unique();
|
2019-05-26 23:24:22 +02:00
|
|
|
$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()
|
|
|
|
{
|
2019-05-24 14:44:41 +02:00
|
|
|
Schema::dropIfExists('twofaccounts');
|
2019-05-20 07:37:41 +02:00
|
|
|
}
|
|
|
|
}
|