This repository has been archived on 2024-08-27. You can view files and clone it, but cannot push or open issues or pull requests.
redstoner.com/db/migrate/20171013001146_add_public_key_to_users.rb
2017-10-12 20:46:23 -04:00

6 lines
117 B
Ruby

class AddPublicKeyToUsers < ActiveRecord::Migration
def change
add_column :users, :public_key, :text
end
end