1
0
mirror of https://github.com/mgerb/classic-wow-forums synced 2026-01-10 17:12:48 +00:00
Files
classic-wow-forums/priv/repo/migrations/20180110031244_thread_reply_count.exs

10 lines
169 B
Elixir

defmodule MyApp.Repo.Migrations.ThreadReplyCount do
use Ecto.Migration
def change do
alter table(:thread) do
add :reply_count, :integer
end
end
end