fp/apps/bright/priv/repo/migrations/20241229055702_create_vtubers.exs
CJ_Clippy aa75c224fc
Some checks failed
ci / build (push) Failing after 23m29s
ci / Tests & Checks (push) Failing after 3m32s
move services/bright to apps/bright
2025-02-10 08:16:50 -08:00

38 lines
960 B
Elixir

defmodule Bright.Repo.Migrations.CreateVtubers do
use Ecto.Migration
def change do
create table(:vtubers) do
add :slug, :string
add :display_name, :string
add :chaturbate, :string
add :twitter, :string
add :patreon, :string
add :twitch, :string
add :tiktok, :string
add :onlyfans, :string
add :youtube, :string
add :linktree, :string
add :carrd, :string
add :fansly, :string
add :pornhub, :string
add :discord, :string
add :reddit, :string
add :throne, :string
add :instagram, :string
add :facebook, :string
add :merch, :string
add :description_1, :string
add :description_2, :string
add :image, :string
add :image_blur, :string
add :theme_color, :string
add :fansly_id, :string
add :chaturbate_id, :string
add :twitter_id, :string
timestamps(type: :utc_datetime)
end
end
end