Event entity created

This commit is contained in:
Dmitriy Zaporozhets 2012-02-28 15:09:23 +02:00
parent 34e1580184
commit a847501fd2
9 changed files with 75 additions and 3 deletions

19
spec/models/event_spec.rb Normal file
View file

@ -0,0 +1,19 @@
# == 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
#
require 'spec_helper'
describe Event do
pending "add some examples to (or delete) #{__FILE__}"
end