engine = 'InnoDB'; $table->increments('id'); $table->string('name'); $table->string('slug'); $table->string('type'); $table->boolean('active')->default(true); $table->timestamps(); }); } public function down() { Schema::dropIfExists('site21_shopaholic_fields'); } }