5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-05-17 04:40:48 +00:00
panel/db/migrate/20230119165420_create_distributed_press_publisher.rb

15 lines
418 B
Ruby

# frozen_string_literal: true
# Crea la tabla de publishers de Distributed Press que contiene las
# instancias y tokens
class CreateDistributedPressPublisher < ActiveRecord::Migration[6.1]
def change
create_table :distributed_press_publishers do |t|
t.timestamps
t.string :instance, unique: true
t.text :token_ciphertext, null: false
t.datetime :expires_at, null: true
end
end
end