akkounts/db/migrate/20230304155240_add_nostr_pubkey_to_users.rb
2023-06-16 13:52:42 +02:00

6 lines
128 B
Ruby

class AddNostrPubkeyToUsers < ActiveRecord::Migration[7.0]
def change
add_column :users, :nostr_pubkey, :string
end
end