5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-22 14:06:21 +00:00
panel/db/migrate/20240219204224_create_activity_pub_objects.rb

18 lines
466 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
# Almacena objetos de ActivityPub. Los objetos pueden estar compartidos
# por toda la instancia.
class CreateActivityPubObjects < ActiveRecord::Migration[6.1]
def change
create_table :activity_pub_objects, id: :uuid do |t|
t.timestamps
t.uuid :actor_id, index: true, null: false
t.string :type, null: false
t.string :uri, null: false, unique: true
t.jsonb :content, default: {}
end
end
end