Added ability to add public key to account.

This commit is contained in:
Logan Fick
2017-10-12 20:46:23 -04:00
parent 611c52223a
commit 3e7a0e550f
3 changed files with 10 additions and 2 deletions

View File

@@ -0,0 +1,5 @@
class AddPublicKeyToUsers < ActiveRecord::Migration
def change
add_column :users, :public_key, :text
end
end