phpvms/database/migrations/2017_06_21_165410_create_ranks_table.php

39 lines
858 B
PHP
Raw Normal View History

2017-06-22 01:10:25 +08:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
2017-06-22 02:44:30 +08:00
class CreateRanksTable extends Migration
2017-06-22 01:10:25 +08:00
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
2017-06-22 02:44:30 +08:00
Schema::create('ranks', function (Blueprint $table) {
2017-06-22 01:10:25 +08:00
$table->increments('id');
$table->string('name');
$table->integer('hours')->default(0);
2017-06-22 09:18:01 +08:00
$table->boolean('auto_approve_acars')->default(false);
$table->boolean('auto_approve_manual')->default(false);
2017-06-22 01:26:47 +08:00
$table->boolean('auto_promote')->default(true);
2017-06-22 01:10:25 +08:00
$table->timestamps();
2017-06-22 09:18:01 +08:00
$table->unique('name');
2017-06-22 01:10:25 +08:00
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
2017-06-22 02:44:30 +08:00
Schema::drop('ranks');
2017-06-22 01:10:25 +08:00
}
}