increments('id'); $table->string('name', 65)->nullable(); $table->text('slug')->nullable(); $table->longText('url')->nullable(); $table->integer('image_id')->nullable(); $table->text('order_form')->nullable(); $table->longText('description')->nullable(); $table->boolean('status')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('christmas_catalogs'); } }