Sha256: 05d72382fc49b77effb1a657626d15ccd8eb727bdb60457c0d166235155490e8
Contents?: true
Size: 516 Bytes
Versions: 53
Compression:
Stored size: 516 Bytes
Contents
# frozen_string_literal: true class CreateGoodJobSettings < ActiveRecord::Migration<%= migration_version %> def change reversible do |dir| dir.up do # Ensure this incremental update migration is idempotent # with monolithic install migration. return if connection.table_exists?(:good_job_settings) end end create_table :good_job_settings, id: :uuid do |t| t.timestamps t.text :key t.jsonb :value t.index :key, unique: true end end end
Version data entries
53 entries across 53 versions & 1 rubygems