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
path: root/db
diff options
context:
space:
mode:
authorMatija Čupić <matteeyah@gmail.com>2018-02-03 00:25:01 +0300
committerMatija Čupić <matteeyah@gmail.com>2018-02-03 00:25:01 +0300
commit838cc0907c963a025553d639283b3bbf8140dae8 (patch)
tree66d7deb3f87d1350dd035ea4868c2cc35f383018 /db
parent1dbcd5ec47980e8c2a38630caec6ccf93d142285 (diff)
Remove timestamps from Callouts
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20180125214301_create_callouts.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/db/migrate/20180125214301_create_callouts.rb b/db/migrate/20180125214301_create_callouts.rb
index b6749b4cfe6..bce3d808efd 100644
--- a/db/migrate/20180125214301_create_callouts.rb
+++ b/db/migrate/20180125214301_create_callouts.rb
@@ -9,8 +9,6 @@ class CreateCallouts < ActiveRecord::Migration
create_table :callouts do |t|
t.string :feature_name, null: false
t.references :user, index: true, foreign_key: { on_delete: :cascade }, null: false
-
- t.timestamps_with_timezone null: false
end
add_index :callouts, [:user_id, :feature_name], unique: true