postland/priv/repo/migrations/20241021231131_add_objects.exs

14 lines
274 B
Elixir
Raw Normal View History

2024-10-22 15:50:26 +00:00
defmodule Postland.Repo.Migrations.AddObjects do
use Ecto.Migration
def change do
create table("objects", primary_key: false) do
add :id, :text, primary_key: true
add :type, :text, null: false
add :data, :map
timestamps()
end
end
end