summaryrefslogtreecommitdiff
path: root/db/migrate
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2014-02-22 08:00:50 -0700
committermo khan <mo@mokhan.ca>2014-02-22 08:00:50 -0700
commit86036fa0e99d77b34edf16349b1e681db660558f (patch)
tree107d8bb986c3ebfe90aa39f1a38cb89487369fa2 /db/migrate
parentb675903ccb615c1f1868cd46095fec140a4198ae (diff)
add applicant name to json response.
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20140222145409_add_name_to_users.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/db/migrate/20140222145409_add_name_to_users.rb b/db/migrate/20140222145409_add_name_to_users.rb
new file mode 100644
index 0000000..2f30a88
--- /dev/null
+++ b/db/migrate/20140222145409_add_name_to_users.rb
@@ -0,0 +1,6 @@
+class AddNameToUsers < ActiveRecord::Migration
+ def change
+ add_column :users, :first_name, :string
+ add_column :users, :last_name, :string
+ end
+end