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

16 lines
333 B
Elixir

defmodule Memex.Repo.Migrations.CreateNotes do
use Ecto.Migration
def change do
create table(:notes, 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