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.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/db/migrate/20160212123307_create_tasks.rb b/db/migrate/20160212123307_create_tasks.rb
index 20573b01351..cd3ad0e4cd8 100644
--- a/db/migrate/20160212123307_create_tasks.rb
+++ b/db/migrate/20160212123307_create_tasks.rb
@@ -1,5 +1,7 @@
# rubocop:disable all
class CreateTasks < ActiveRecord::Migration
+ DOWNTIME = false
+
def change
create_table :tasks do |t|
t.references :user, null: false, index: true
@@ -9,7 +11,7 @@ class CreateTasks < ActiveRecord::Migration
t.integer :action, null: false
t.string :state, null: false, index: true
- t.timestamps
+ t.timestamps null: true
end
end
end