Event entity created
Observe issue, merge request, note creation - create event register push event
This commit is contained in:
parent
85954621a3
commit
0a0710a548
16 changed files with 310 additions and 104 deletions
14
db/migrate/20120228130210_create_events.rb
Normal file
14
db/migrate/20120228130210_create_events.rb
Normal file
|
@ -0,0 +1,14 @@
|
|||
class CreateEvents < ActiveRecord::Migration
|
||||
def change
|
||||
create_table :events do |t|
|
||||
t.string :target_type, :null => true
|
||||
t.integer :target_id, :null => true
|
||||
|
||||
t.string :title, :null => true
|
||||
t.text :data, :null => true
|
||||
t.integer :project_id, :null => true
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
end
|
5
db/migrate/20120228134252_add_action_to_event.rb
Normal file
5
db/migrate/20120228134252_add_action_to_event.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class AddActionToEvent < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :events, :action, :integer, :null => true
|
||||
end
|
||||
end
|
13
db/schema.rb
13
db/schema.rb
|
@ -11,7 +11,18 @@
|
|||
#
|
||||
# It's strongly recommended to check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(:version => 20120219193300) do
|
||||
ActiveRecord::Schema.define(:version => 20120228134252) do
|
||||
|
||||
create_table "events", :force => true do |t|
|
||||
t.string "target_type"
|
||||
t.integer "target_id"
|
||||
t.string "title"
|
||||
t.text "data"
|
||||
t.integer "project_id"
|
||||
t.datetime "created_at", :null => false
|
||||
t.datetime "updated_at", :null => false
|
||||
t.integer "action"
|
||||
end
|
||||
|
||||
create_table "issues", :force => true do |t|
|
||||
t.string "title"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue