#23 initial scaffolding for rankings

This commit is contained in:
Nabeel Shahzad
2017-06-21 12:10:25 -05:00
parent 381a713882
commit b5c41626c5
16 changed files with 535 additions and 1 deletions

View File

@@ -0,0 +1,36 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
class CreateRankingsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('rankings', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->integer('hours')->default(0);
$table->bool('auto_approval_acars')->default(false);
$table->bool('auto_approval_manual')->default(false);
$table->bool('auto_promote')->default(true);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('rankings');
}
}