Skip to content

Commit

Permalink
Change form submissions migration to use decimal (#313)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanmitchell authored Jun 27, 2024
1 parent 8172d10 commit 4155c76
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
public function up()
{
Schema::table($this->prefix('form_submissions'), function (Blueprint $table) {
$table->double('id', 14, 4)->index()->unique()->change();
$table->decimal('id', 14, 4)->index()->unique()->change();
});
}

Expand Down

0 comments on commit 4155c76

Please sign in to comment.