diff options
author | Matija Čupić <matteeyah@gmail.com> | 2018-02-02 22:25:01 +0100 |
---|---|---|
committer | Matija Čupić <matteeyah@gmail.com> | 2018-02-02 22:25:01 +0100 |
commit | 838cc0907c963a025553d639283b3bbf8140dae8 (patch) | |
tree | 66d7deb3f87d1350dd035ea4868c2cc35f383018 | |
parent | 1dbcd5ec47980e8c2a38630caec6ccf93d142285 (diff) | |
download | gitlab-ce-838cc0907c963a025553d639283b3bbf8140dae8.tar.gz |
Remove timestamps from Callouts
-rw-r--r-- | db/migrate/20180125214301_create_callouts.rb | 2 |
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 |