class ConfigurableSettings < ActiveRecord::Migration
def self.up
ConfigurableSetting.create_table
end
def self.down
ConfigurableSetting.drop_table
end
end
rake db:migrate.
class User < ActiveRecord::Base acts_as_configurable end