forked from Trustie/forgeplus
22 lines
488 B
Ruby
22 lines
488 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: entities
|
|
#
|
|
# id :integer not null, primary key
|
|
# entity_type :integer
|
|
# user_id :integer
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# apply_user_authentication_id :integer
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_entities_on_entity_type (entity_type)
|
|
#
|
|
|
|
class Entity < ActiveRecord::Base
|
|
|
|
belongs_to :user
|
|
|
|
end
|