Update
This commit is contained in:
parent
58049c93d4
commit
894866ca03
22 changed files with 344 additions and 213 deletions
|
@ -4,14 +4,16 @@ defmodule Nulla.Repo.Migrations.CreateActors do
|
|||
def change do
|
||||
create table(:actors, primary_key: false) do
|
||||
add :id, :bigint, primary_key: true
|
||||
add :type, :string
|
||||
add :following, :string
|
||||
add :followers, :string
|
||||
add :inbox, :string
|
||||
add :outbox, :string
|
||||
add :domain, :string
|
||||
add :ap_id, :string, null: false
|
||||
add :type, :string, null: false
|
||||
add :following, :string, null: false
|
||||
add :followers, :string, null: false
|
||||
add :inbox, :string, null: false
|
||||
add :outbox, :string, null: false
|
||||
add :featured, :string
|
||||
add :featuredTags, :string
|
||||
add :preferredUsername, :string
|
||||
add :preferredUsername, :string, null: false
|
||||
add :name, :string
|
||||
add :summary, :string
|
||||
add :url, :string
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue