2024-04-10 13:56:22 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
|
|
|
|
class CreateUsersTable extends Migration
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function up()
|
|
|
|
{
|
|
|
|
Schema::create('users', function (Blueprint $table) {
|
|
|
|
$table->increments('id');
|
|
|
|
$table->string('login')->unique();
|
|
|
|
$table->string('email')->unique();
|
|
|
|
$table->string('password');
|
2024-04-10 19:31:01 +02:00
|
|
|
$table->string('token')->nullable();
|
|
|
|
$table->string('ip')->nullable();
|
2024-04-10 13:56:22 +02:00
|
|
|
$table->integer('isadmin');
|
|
|
|
$table->integer('creation_date');
|
|
|
|
$table->integer('modification_date');
|
|
|
|
$table->unique(['login', 'email','password']);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function down()
|
|
|
|
{
|
|
|
|
Schema::dropIfExists('users');
|
|
|
|
}
|
|
|
|
}
|