increments('id'); $table->integer('category_id')->nullable(); $table->string('name', 255)->nullable(); $table->float('price')->nullable(); $table->string('days', 100)->nullable(); $table->tinyInteger('expedite')->nullable(); $table->float('expedite_price')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('subcategories'); } }