1
0
Fork 0
mirror of https://github.com/heartcombo/devise.git synced 2022-11-09 12:18:31 -05:00
heartcombo--devise/lib/devise/orm/active_record.rb

38 lines
1.3 KiB
Ruby
Raw Normal View History

2010-10-10 11:51:12 -04:00
require 'orm_adapter/adapters/active_record'
module Devise
module Orm
2009-11-13 19:33:00 -05:00
# This module contains some helpers and handle schema (migrations):
#
# create_table :accounts do |t|
# t.database_authenticatable
2009-11-13 19:33:00 -05:00
# t.confirmable
# t.recoverable
# t.rememberable
2009-12-30 12:19:33 -05:00
# t.trackable
# t.lockable
2009-11-13 19:33:00 -05:00
# t.timestamps
# end
#
# However this method does not add indexes. If you need them, here is the declaration:
#
# add_index "accounts", ["email"], :name => "email", :unique => true
# add_index "accounts", ["confirmation_token"], :name => "confirmation_token", :unique => true
# add_index "accounts", ["reset_password_token"], :name => "reset_password_token", :unique => true
#
module ActiveRecord
module Schema
include Devise::Schema
# Tell how to apply schema methods.
def apply_devise_schema(name, type, options={})
column name, type.to_s.downcase.to_sym, options
end
2009-11-13 19:33:00 -05:00
end
end
end
end
2009-11-13 19:33:00 -05:00
2010-04-20 11:22:16 -04:00
ActiveRecord::Base.extend Devise::Models
ActiveRecord::ConnectionAdapters::Table.send :include, Devise::Orm::ActiveRecord::Schema
ActiveRecord::ConnectionAdapters::TableDefinition.send :include, Devise::Orm::ActiveRecord::Schema