bigIncrements('id'); $table->boolean('status')->default(1); $table->text('name'); $table->text('price'); $table->integer('capacity'); $table->longText('description')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('plans'); } }