35 lines
999 B
PHP
35 lines
999 B
PHP
<?php namespace RainLab\User\Updates;
|
|
|
|
use Schema;
|
|
use October\Rain\Database\Updates\Migration;
|
|
|
|
class CreateUsersTable extends Migration
|
|
{
|
|
|
|
public function up()
|
|
{
|
|
Schema::create('users', function($table)
|
|
{
|
|
$table->engine = 'InnoDB';
|
|
$table->increments('id');
|
|
$table->string('name')->nullable();
|
|
$table->string('email')->unique();
|
|
$table->string('password');
|
|
$table->string('activation_code')->nullable()->index();
|
|
$table->string('persist_code')->nullable();
|
|
$table->string('reset_password_code')->nullable()->index();
|
|
$table->text('permissions')->nullable();
|
|
$table->boolean('is_activated')->default(0);
|
|
$table->timestamp('activated_at')->nullable();
|
|
$table->timestamp('last_login')->nullable();
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('users');
|
|
}
|
|
|
|
}
|