engine/lib/locomotive/hosting/bushido/account_ext.rb

19 lines
233 B
Ruby
Raw Normal View History

module Locomotive
module Hosting
module Bushido
module AccountExt
extend ActiveSupport::Concern
included do
field :bushido_user_id, :type => Integer
end
end
end
end
end