fedibird-fe/db/migrate/20221215211405_create_push_subscription_blocks.rb

12 lines
304 B
Ruby
Raw Normal View History

2022-12-18 05:34:18 +00:00
class CreatePushSubscriptionBlocks < ActiveRecord::Migration[6.1]
def change
create_table :push_subscription_blocks do |t|
t.string :name, null: false, default: ''
t.string :endpoint, null: false
t.boolean :enable, null: false, default: true
t.timestamps
end
end
end