Skip to content
Snippets Groups Projects
Commit a847501f authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Event entity created

parent 34e15801
No related branches found
No related tags found
No related merge requests found
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
#
Loading
Loading
@@ -364,5 +364,6 @@ end
# issues_enabled :boolean default(TRUE), not null
# wall_enabled :boolean default(TRUE), not null
# merge_requests_enabled :boolean default(TRUE), not null
# wiki_enabled :boolean default(TRUE), not null
#
 
Loading
Loading
@@ -80,7 +80,6 @@ end
# project_id :integer not null
# created_at :datetime
# updated_at :datetime
# repo_access :integer default(0), not null
# project_access :integer default(0), not null
#
 
Loading
Loading
@@ -31,3 +31,16 @@ class Wiki < ActiveRecord::Base
 
end
end
# == Schema Information
#
# Table name: wikis
#
# id :integer not null, primary key
# title :string(255)
# content :text
# project_id :integer
# created_at :datetime not null
# updated_at :datetime not null
# slug :string(255)
# user_id :integer
#
class CreateEvents < ActiveRecord::Migration
def change
create_table :events do |t|
t.string :data_type, :null => true
t.string :data_id, :null => true
t.string :title, :null => true
t.text :data, :null => true
t.integer :project_id, :null => true
t.timestamps
end
end
end
Loading
Loading
@@ -11,7 +11,17 @@
#
# It's strongly recommended to check this file into your version control system.
 
ActiveRecord::Schema.define(:version => 20120219193300) do
ActiveRecord::Schema.define(:version => 20120228130210) do
create_table "events", :force => true do |t|
t.string "data_type"
t.string "data_id"
t.string "title"
t.text "data"
t.integer "project_id"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end
 
create_table "issues", :force => true do |t|
t.string "title"
Loading
Loading
# == 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
Loading
Loading
@@ -303,5 +303,6 @@ end
# issues_enabled :boolean default(TRUE), not null
# wall_enabled :boolean default(TRUE), not null
# merge_requests_enabled :boolean default(TRUE), not null
# wiki_enabled :boolean default(TRUE), not null
#
 
Loading
Loading
@@ -25,7 +25,6 @@ end
# project_id :integer not null
# created_at :datetime
# updated_at :datetime
# repo_access :integer default(0), not null
# project_access :integer default(0), not null
#
 
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment