11 lines
188 B
Elixir
11 lines
188 B
Elixir
|
|
defmodule Postland.Repo.Migrations.AddNameToUsers do
|
||
|
|
use Ecto.Migration
|
||
|
|
|
||
|
|
def change do
|
||
|
|
alter table("users") do
|
||
|
|
add :name, :string
|
||
|
|
add :summary, :text
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|