Sha256: 1f101d51b88c10e24e058a26339f1c0d2c1b1426e843371ad15fe9de7145c09b

Contents?: true

Size: 190 Bytes

Versions: 2

Compression:

Stored size: 190 Bytes

Contents

class AddCustomStatusToUsers < ActiveRecord::Migration
  def self.up
    add_column :users, :custom_status, :string
  end

  def self.down
    remove_column :users, :custom_status
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
redmine-per_user_status-0.1.0 db/migrate/20150505162200_add_custom_status_to_users.rb
redmine-per_user_status-0.0.2 db/migrate/20150505162200_add_custom_status_to_users.rb