chiya/priv/repo/migrations/20230305161354_create_channels.exs

15 lines
264 B
Elixir
Raw Normal View History

2023-03-05 17:16:24 +01:00
defmodule Chiya.Repo.Migrations.CreateChannels do
use Ecto.Migration
def change do
create table(:channels) do
add :name, :string
add :content, :text
add :visibility, :string
add :slug, :string
timestamps()
end
end
end