mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
12 lines
267 B
Ruby
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
|