Attendize/database/migrations/2016_05_16_142730_update_qu...

34 lines
726 B
PHP

<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class UpdateQuestionsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('questions', function (Blueprint $table) {
$table->integer('sort_order')->default(1);
$table->tinyInteger('is_enabled')->default(1);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('questions', function (Blueprint $table) {
$table->dropColumn('sort_order');
$table->dropColumn('is_enabled');
});
}
}