increments('id'); $table->string('title', 65)->nullable(); $table->string('slug', 50)->nullable(); $table->text('catalog_url')->nullable(); $table->string('blurb', 80)->nullable(); $table->text('image')->nullable(); $table->text('description')->nullable(); $table->integer('status')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('catalogs'); } }