chiya/priv/repo/migrations/20230307204825_create_settings.exs

17 lines
328 B
Elixir
Raw Permalink Normal View History

2023-03-07 23:05:25 +01:00
defmodule Chiya.Repo.Migrations.CreateSettings do
use Ecto.Migration
def change do
create table(:settings) do
add :title, :string
add :subtitle, :string
add :theme, :string
add :user_agent, :string
add :custom_css, :text
add :custom_html, :text
timestamps()
end
end
end