bigIncrements('id'); $table->text('question'); $table->bigInteger('user_id'); $table->tinyInteger('status')->default(1); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('questions'); } }