defmodule ComponentsElixir.Repo.Migrations.AddDatasheetFilenameToComponents do use Ecto.Migration def change do alter table(:components) do add :datasheet_filename, :string end end end