event.rb 385 字节
Newer Older
D
Dmitriy Zaporozhets 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
class Event < ActiveRecord::Base
  belongs_to :project
  serialize :data
end
# == Schema Information
#
# Table name: events
#
#  id         :integer         not null, primary key
#  data_type  :string(255)
#  data_id    :string(255)
#  title      :string(255)
#  data       :text
#  project_id :integer
#  created_at :datetime        not null
#  updated_at :datetime        not null
#