increments('id'); $table->string('slug', 100)->nullable(); $table->string('name', 100)->nullable(); $table->tinyInteger('status')->nullable(); $table->text('description')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('campaign_databases'); } }