commit
f2347a0011
@ -0,0 +1,15 @@ |
||||
defmodule Explorer.Repo.Migrations.AlterTokenDecimalsToBigint do |
||||
use Ecto.Migration |
||||
|
||||
def up do |
||||
alter table("tokens") do |
||||
modify(:decimals, :bigint) |
||||
end |
||||
end |
||||
|
||||
def down do |
||||
alter table("tokens") do |
||||
modify(:decimals, :smallint) |
||||
end |
||||
end |
||||
end |
Loading…
Reference in new issue