Bring the InitSchema migration up to standard

This commit is contained in:
Nick Thomas 2019-07-01 14:31:01 +01:00
parent cfe31f992a
commit 2f66a7bb81
No known key found for this signature in database
GPG Key ID: 2A313A47AFADACE9
1 changed files with 11 additions and 1 deletions

View File

@ -1,4 +1,14 @@
class InitSchema < ActiveRecord::Migration
# frozen_string_literal: true
# rubocop:disable Layout/SpaceInsideHashLiteralBraces
# rubocop:disable Layout/SpaceAroundOperators
# rubocop:disable Metrics/AbcSize
# rubocop:disable Migration/AddConcurrentForeignKey
# rubocop:disable Style/WordArray
class InitSchema < ActiveRecord::Migration[4.2]
DOWNTIME = false
def up
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"