mirror of
https://github.com/mgerb/classic-wow-forums
synced 2026-01-10 17:12:48 +00:00
10 lines
169 B
Elixir
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
|