11 lines
174 B
Elixir
11 lines
174 B
Elixir
|
defmodule Bump.Repo.Migrations.AddMessageTitle do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
alter table :messages do
|
||
|
add :title, :string, size: 1024
|
||
|
end
|
||
|
|
||
|
end
|
||
|
end
|