mirror of
https://github.com/mgerb/classic-wow-forums
synced 2026-01-09 16:42:49 +00:00
11 lines
160 B
Elixir
11 lines
160 B
Elixir
defmodule MyApp.Repo.Migrations.ThreadRemoveEdited do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:thread) do
|
|
remove :edited
|
|
end
|
|
end
|
|
|
|
end
|