Sha256: 3d47aadcfa8dbb81c93b73cd53978adba8f70d869f04124dd18ce73b5fc57ff6

Contents?: true

Size: 311 Bytes

Versions: 11

Compression:

Stored size: 311 Bytes

Contents

class AddLastfmUserNameToUsers < ActiveRecord::Migration
    def up
    add_column :users, :lastfm_user_name, :string
    
    change_column :users, :email, :string, null: true
  end
  
  def down
    remove_column :users, :lastfm_user_name
    
    change_column :users, :email, :string, null: false
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
voluntary-0.7.1 db/migrate/20150119171210_add_lastfm_user_name_to_users.rb
voluntary-0.7.0 db/migrate/20150119171210_add_lastfm_user_name_to_users.rb
voluntary-0.6.0 db/migrate/20150119171210_add_lastfm_user_name_to_users.rb
voluntary-0.5.2 db/migrate/20150119171210_add_lastfm_user_name_to_users.rb
voluntary-0.5.1 db/migrate/20150119171210_add_lastfm_user_name_to_users.rb
voluntary-0.5.0 db/migrate/20150119171210_add_lastfm_user_name_to_users.rb
voluntary-0.4.0 db/migrate/20150119171210_add_lastfm_user_name_to_users.rb
voluntary-0.3.0 db/migrate/20150119171210_add_lastfm_user_name_to_users.rb
voluntary-0.2.4 db/migrate/20150119171210_add_lastfm_user_name_to_users.rb
voluntary-0.2.3 db/migrate/20150119171210_add_lastfm_user_name_to_users.rb
voluntary-0.2.2 db/migrate/20150119171210_add_lastfm_user_name_to_users.rb