From 86036fa0e99d77b34edf16349b1e681db660558f Mon Sep 17 00:00:00 2001 From: mo khan Date: Sat, 22 Feb 2014 08:00:50 -0700 Subject: add applicant name to json response. --- db/migrate/20140222145409_add_name_to_users.rb | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 db/migrate/20140222145409_add_name_to_users.rb (limited to 'db/migrate') 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 -- cgit v1.2.3