Sha256: b9b9875025bf3ec51459e185fda41a8f89fc970c5e66ec3d2861f3c30adae1b4
Contents?: true
Size: 493 Bytes
Versions: 13
Compression:
Stored size: 493 Bytes
Contents
class CreateImportoImport < ActiveRecord::Migration[5.1] def change enable_extension "uuid-ossp" enable_extension "pgcrypto" return if table_exists?(:importo_imports) create_table :importo_imports, id: :uuid do |t| t.string :importo_ownable_type, null: false t.uuid :importo_ownable_id, null: false t.string :kind t.string :state t.string :file_name t.string :result_message t.jsonb :results t.timestamps end end end
Version data entries
13 entries across 13 versions & 1 rubygems