summaryrefslogtreecommitdiff
path: root/db/migrate
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>2012-02-28 15:09:23 +0200
committerDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>2012-02-28 15:09:23 +0200
commita847501fd2ffc1c4becc7d0d352d80168d9b3568 (patch)
treeb3b75ffaac483d1cb5ec497743e2525db1fd00d9 /db/migrate
parent34e15801845f806e0f0f04aff8ba78962f8a9086 (diff)
downloadgitlab-ce-a847501fd2ffc1c4becc7d0d352d80168d9b3568.tar.gz
Event entity created
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20120228130210_create_events.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/db/migrate/20120228130210_create_events.rb b/db/migrate/20120228130210_create_events.rb
new file mode 100644
index 00000000000..2f15ff3067f
--- /dev/null
+++ b/db/migrate/20120228130210_create_events.rb
@@ -0,0 +1,13 @@
+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