-
-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for long app_build_number
- Loading branch information
1 parent
eab5b69
commit 42e1514
Showing
2 changed files
with
10 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
priv/repo/migrations/20241106205931_change_app_build_number_to_bigint.exs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
defmodule Plexus.Repo.Migrations.ChangeAppBuildNumberToBigint do | ||
use Ecto.Migration | ||
|
||
def change do | ||
alter table(:ratings) do | ||
modify :app_build_number, :bigint, from: :integer | ||
end | ||
end | ||
end |