increments('id'); $table->integer('user_id')->nullable(); $table->text('proposal')->nullable(); $table->string('ether_address', 255)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('votes'); } }