10 lines
206 B
Elixir
10 lines
206 B
Elixir
defmodule ComponentsElixir.Repo.Migrations.AddDatasheetFilenameToComponents do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:components) do
|
|
add :datasheet_filename, :string
|
|
end
|
|
end
|
|
end
|