1
0
mirror of https://github.com/mgerb/classic-wow-forums synced 2026-01-09 16:42:49 +00:00
Files
classic-wow-forums/priv/repo/migrations/20180126012522_thread_remove_edited.exs

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