summaryrefslogtreecommitdiff
path: root/db/migrate/20200121192942_create_geo_events.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20200121192942_create_geo_events.rb')
-rw-r--r--db/migrate/20200121192942_create_geo_events.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/db/migrate/20200121192942_create_geo_events.rb b/db/migrate/20200121192942_create_geo_events.rb
index 6dbe131051f..0c885e8524c 100644
--- a/db/migrate/20200121192942_create_geo_events.rb
+++ b/db/migrate/20200121192942_create_geo_events.rb
@@ -3,6 +3,7 @@
class CreateGeoEvents < ActiveRecord::Migration[5.2]
DOWNTIME = false
+ # rubocop:disable Migration/PreventStrings
def change
create_table :geo_events do |t|
t.string :replicable_name, limit: 255, null: false
@@ -11,4 +12,5 @@ class CreateGeoEvents < ActiveRecord::Migration[5.2]
t.datetime_with_timezone :created_at, null: false
end
end
+ # rubocop:enable Migration/PreventStrings
end