Sha256: 42602cb96dbaefdfd223636b0b56e2a1aaacf4966c1b4fe36408f92350e6cffd
Contents?: true
Size: 752 Bytes
Versions: 6
Compression:
Stored size: 752 Bytes
Contents
class CreateResourceImportFileTransitions < ActiveRecord::Migration[5.2] def change create_table :resource_import_file_transitions do |t| t.string :to_state if ActiveRecord::Base.configurations[Rails.env]["adapter"].try(:match, /mysql/) t.text :metadata else t.text :metadata, default: "{}" end t.integer :sort_key t.integer :resource_import_file_id t.timestamps end add_index :resource_import_file_transitions, :resource_import_file_id, name: "index_resource_import_file_transitions_on_file_id" add_index :resource_import_file_transitions, [:sort_key, :resource_import_file_id], unique: true, name: "index_resource_import_file_transitions_on_sort_key_and_file_id" end end
Version data entries
6 entries across 6 versions & 6 rubygems