summaryrefslogtreecommitdiff
path: root/db/migrate/20161223034646_create_timelogs.rb
diff options
context:
space:
mode:
authorRobert Speicher <robert@gitlab.com>2017-01-19 23:14:16 +0000
committerJames Lopez <james@jameslopez.es>2017-01-20 10:49:36 +0100
commitcd094d7a4712b40f254880bef73d0b01c9251845 (patch)
tree29fd52639451896c38c29a3878689d1654878525 /db/migrate/20161223034646_create_timelogs.rb
parentafcc9905f7083e38a2bb40575d6a241d7bf6797e (diff)
downloadgitlab-ce-cd094d7a4712b40f254880bef73d0b01c9251845.tar.gz
Merge branch '26868-fix-duplicate-backported-migrations' into 'master'
Rename duplicate migrations and skip them if table/columns are already present Closes #26868 See merge request !8644
Diffstat (limited to 'db/migrate/20161223034646_create_timelogs.rb')
-rw-r--r--db/migrate/20161223034646_create_timelogs.rb38
1 files changed, 0 insertions, 38 deletions
diff --git a/db/migrate/20161223034646_create_timelogs.rb b/db/migrate/20161223034646_create_timelogs.rb
deleted file mode 100644
index d3353a67eec..00000000000
--- a/db/migrate/20161223034646_create_timelogs.rb
+++ /dev/null
@@ -1,38 +0,0 @@
-# See http://doc.gitlab.com/ce/development/migration_style_guide.html
-# for more information on how to write migrations for GitLab.
-
-class CreateTimelogs < ActiveRecord::Migration
- include Gitlab::Database::MigrationHelpers
-
- # Set this constant to true if this migration requires downtime.
- DOWNTIME = false
-
- # When a migration requires downtime you **must** uncomment the following
- # constant and define a short and easy to understand explanation as to why the
- # migration requires downtime.
- # DOWNTIME_REASON = ''
-
- # When using the methods "add_concurrent_index" or "add_column_with_default"
- # you must disable the use of transactions as these methods can not run in an
- # existing transaction. When using "add_concurrent_index" make sure that this
- # method is the _only_ method called in the migration, any other changes
- # should go in a separate migration. This ensures that upon failure _only_ the
- # index creation fails and can be retried or reverted easily.
- #
- # To disable transactions uncomment the following line and remove these
- # comments:
- # disable_ddl_transaction!
-
- def change
- create_table :timelogs do |t|
- t.integer :time_spent, null: false
- t.references :trackable, polymorphic: true
- t.references :user
-
- t.timestamps null: false
- end
-
- add_index :timelogs, [:trackable_type, :trackable_id]
- add_index :timelogs, :user_id
- end
-end