10 lines
179 B
Elixir
10 lines
179 B
Elixir
defmodule Pinchflat.Repo.Migrations.AddDescriptionToSource do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:sources) do
|
|
add :description, :string
|
|
end
|
|
end
|
|
end
|