* master: fix: ignore messages without error Add CHANGELOG entry Make block size field nullablepull/1844/head
commit
2a0c4798c8
@ -0,0 +1,15 @@ |
||||
defmodule Explorer.Repo.Migrations.ChangeBlockSizeToNullable do |
||||
use Ecto.Migration |
||||
|
||||
def up do |
||||
alter table(:blocks) do |
||||
modify(:size, :integer, null: true) |
||||
end |
||||
end |
||||
|
||||
def down do |
||||
alter table(:blocks) do |
||||
modify(:size, :integer, null: false) |
||||
end |
||||
end |
||||
end |
Loading…
Reference in new issue