summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorLogan Fick <logaldeveloper@protonmail.com>2017-10-12 20:46:23 -0400
committerLogan Fick <logaldeveloper@protonmail.com>2017-10-12 20:46:23 -0400
commit3e7a0e550fa3e7730bf0b2bb44a3d93a25307514 (patch)
tree0ea5faad580677be9b8706e9e3dac4a19955859b /db
parent611c52223a5d7ebea1dbe73d46b061229f6918e1 (diff)
Added ability to add public key to account.
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20171013001146_add_public_key_to_users.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20171013001146_add_public_key_to_users.rb b/db/migrate/20171013001146_add_public_key_to_users.rb
new file mode 100644
index 0000000..a03743c
--- /dev/null
+++ b/db/migrate/20171013001146_add_public_key_to_users.rb
@@ -0,0 +1,5 @@
+class AddPublicKeyToUsers < ActiveRecord::Migration
+ def change
+ add_column :users, :public_key, :text
+ end
+end