Skip to content

Commit

Permalink
Fix translations key bad migration type
Browse files Browse the repository at this point in the history
  • Loading branch information
simonprev committed Apr 4, 2024
1 parent 4f92986 commit e11e89d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ defmodule Accent.Repo.Migrations.AddNonNullableChecks do
end

alter table(:translations) do
modify(:key, :string, null: false)
modify(:key, :text, null: false)
modify(:removed, :boolean, null: false, default: false)
modify(:conflicted, :boolean, null: false, default: false)
modify(:comments_count, :integer, null: false, default: 0)
Expand Down

0 comments on commit e11e89d

Please sign in to comment.