Sindbad~EG File Manager
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateUsersTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
if (Schema::hasTable('users')) return;
Schema::create('users', function(Blueprint $table)
{
$table->increments('id');
$table->string('username')->nullable();
$table->string('first_name')->nullable();
$table->string('last_name')->nullable();
$table->string('avatar_url')->nullable();
$table->string('gender')->nullable();
$table->text('permissions')->nullable();
$table->string('email')->unique();
$table->string('password', 60);
$table->string('card_brand')->nullable();
$table->string('card_last_four')->nullable();
$table->rememberToken();
$table->timestamps();
$table->collation = config('database.connections.mysql.collation');
$table->charset = config('database.connections.mysql.charset');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('users');
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists