This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
bdfr-browser/priv/repo/migrations/20230813215610_add_post_filename.exs

10 lines
182 B
Elixir
Raw Normal View History

2023-08-13 23:18:55 +00:00
defmodule BdfrBrowser.Repo.Migrations.AddPostFilename do
use Ecto.Migration
def change do
alter table("posts") do
add :filename, :string, size: 2048
end
end
end