Update migrations
This commit is contained in:
parent
50abfe4748
commit
57efda7638
12 changed files with 56 additions and 35 deletions
18
priv/repo/migrations/20250615131856_create_activities.exs
Normal file
18
priv/repo/migrations/20250615131856_create_activities.exs
Normal file
|
@ -0,0 +1,18 @@
|
|||
defmodule Nulla.Repo.Migrations.CreateActivities do
|
||||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
create table(:activities, primary_key: false) do
|
||||
add :id, :bigint, primary_key: true
|
||||
add :type, :string, null: false
|
||||
add :actor, :string, null: false
|
||||
add :object, :map, null: false
|
||||
add :to, {:array, :string}, default: []
|
||||
|
||||
timestamps()
|
||||
end
|
||||
|
||||
create index(:activities, [:actor])
|
||||
create index(:activities, [:type])
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue