summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatija Čupić <matteeyah@gmail.com>2018-02-02 22:25:01 +0100
committerMatija Čupić <matteeyah@gmail.com>2018-02-02 22:25:01 +0100
commit838cc0907c963a025553d639283b3bbf8140dae8 (patch)
tree66d7deb3f87d1350dd035ea4868c2cc35f383018
parent1dbcd5ec47980e8c2a38630caec6ccf93d142285 (diff)
downloadgitlab-ce-838cc0907c963a025553d639283b3bbf8140dae8.tar.gz
Remove timestamps from Callouts
-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