Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20170909150936_add_spent_at_to_timelogs.rb')
-rw-r--r--db/migrate/20170909150936_add_spent_at_to_timelogs.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/db/migrate/20170909150936_add_spent_at_to_timelogs.rb b/db/migrate/20170909150936_add_spent_at_to_timelogs.rb
deleted file mode 100644
index 3a2c900b445..00000000000
--- a/db/migrate/20170909150936_add_spent_at_to_timelogs.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-class AddSpentAtToTimelogs < ActiveRecord::Migration[4.2]
- DOWNTIME = false
-
- def up
- add_column :timelogs, :spent_at, :datetime_with_timezone
- end
-
- def down
- remove_column :timelogs, :spent_at
- end
-end