increments('id'); $table->string('title', 65)->nullable(); $table->text('slug')->nullable(); $table->text('url')->nullable(); $table->string('blurb', 80)->nullable(); $table->longText('content')->nullable(); $table->boolean('status')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('promos'); } }