4 changed files with 44 additions and 4 deletions
@ -0,0 +1,9 @@ |
|||||||
|
defmodule GcIndexRelay.Repo.Migrations.AllowNullTagValue do |
||||||
|
use Ecto.Migration |
||||||
|
|
||||||
|
def change do |
||||||
|
alter table(:tags) do |
||||||
|
modify :value, :string, null: true, from: {:string, null: false} |
||||||
|
end |
||||||
|
end |
||||||
|
end |
||||||
Loading…
Reference in new issue