bonfire-app/flavours/classic/repo/migrations/20210402105128_ap_test_table.exs

16 lines
398 B
Elixir
Raw Normal View History

2021-04-03 13:27:44 +00:00
defmodule ActivityPub.Repo.Migrations.APTestTable do
use Ecto.Migration
def change do
# This table only exists for test purposes
create table("local_actor", primary_key: false) do
2022-09-12 04:34:14 +00:00
add(:id, :uuid, primary_key: true)
add(:username, :citext)
add(:data, :map)
add(:local, :boolean)
add(:keys, :text)
add(:followers, {:array, :string})
2021-04-03 13:27:44 +00:00
end
end
end