20140210062747_add_mode_to_user_credentials.rb 165 B

12345
  1. class AddModeToUserCredentials < ActiveRecord::Migration
  2. def change
  3. add_column :user_credentials, :mode, :string, :default => 'text', :null => false
  4. end
  5. end