gitlabhq/app/models/event.rb

18 lines
385 B
Ruby
Raw Normal View History

2012-02-28 14:09:23 +01:00
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
#