postland/priv/repo/migrations/20241009214840_add_follows.exs
2024-10-09 22:45:28 +00:00

11 lines
292 B
Elixir

defmodule Postland.Repo.Migrations.AddActors do
use Ecto.Migration
def change do
create table("follows", primary_key: false) do
add :follower, :string, primary_key: true
add :followee, :string, primary_key: true
add :confirmed_at, :naive_datetime
end
end
end