bonfire-app/flavours/cooperation/repo/migrations/20220805045656_create_preview_cards.exs

19 lines
396 B
Elixir
Raw Normal View History

2022-09-26 22:49:20 +00:00
defmodule Rauversion.Repo.Migrations.CreatePreviewCards do
use Ecto.Migration
def change do
create table(:preview_cards) do
add(:url, :string)
add(:title, :string)
add(:description, :text)
add(:type, :string)
add(:author_name, :string)
add(:author_url, :string)
add(:html, :text)
add(:image, :string)
timestamps()
end
end
end