Files
c-cms-legacy/database/migrations/2014_10_12_000000_create_users_table.php
TheGamecraft af458ad411 3.0.1c
2018-07-16 20:28:57 -04:00

44 lines
1.0 KiB
PHP

<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateUsersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->string('firstname');
$table->string('lastname');
$table->string('email')->unique();
$table->string('password');
$table->string('rank')->default('0');
$table->string('adress');
$table->string('telephone');
$table->string('age');
$table->string('avatar');
$table->string('sexe');
$table->string('job');
$table->rememberToken();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('users');
}
}