memEx/priv/repo/migrations/20220726001039_create_contexts.exs
2022-11-03 18:23:17 -04:00

16 lines
339 B
Elixir

defmodule Memex.Repo.Migrations.CreateContexts do
use Ecto.Migration
def change do
create table(:contexts, primary_key: false) do
add :id, :binary_id, primary_key: true
add :title, :string
add :content, :text
add :tag, {:array, :string}
add :visibility, :string
timestamps()
end
end
end