1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/db/migrate/20240726143215_create_account_secrets.rb
2024-07-29 13:19:07 +02:00

12 lines
267 B
Ruby

# frozen_string_literal: true
class CreateAccountSecrets < ActiveRecord::Migration[7.1]
def change
create_table :account_secrets do |t|
t.text :private_key
t.references :account, null: false, foreign_key: true
t.timestamps
end
end
end