increments('id');
$table->string('user_id', 191);
$table->integer('instructor_id')->nullable();
$table->string('course_id', 191);
$table->string('question', 191);
$table->string('answer', 191);
$table->enum('status', array('1','0'))->nullable();
$table->timestamps();
});
}
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('questions');
}
}