summaryrefslogtreecommitdiff
path: root/db/migrate/20160212123307_create_tasks.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20160212123307_create_tasks.rb')
-rw-r--r--db/migrate/20160212123307_create_tasks.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/db/migrate/20160212123307_create_tasks.rb b/db/migrate/20160212123307_create_tasks.rb
deleted file mode 100644
index 33acc8af91f..00000000000
--- a/db/migrate/20160212123307_create_tasks.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-# rubocop:disable all
-class CreateTasks < ActiveRecord::Migration[4.2]
- DOWNTIME = false
-
- def change
- create_table :tasks do |t|
- t.references :user, null: false, index: true
- t.references :project, null: false, index: true
- t.references :target, polymorphic: true, null: false, index: true
- t.integer :author_id, index: true
- t.integer :action, null: false
- t.string :state, null: false, index: true
-
- t.timestamps null: true
- end
- end
-end