Sha256: bab511184ae3b77e7c861601a2efd86bec3c10526e98b19c755ae9adcb5ec3b2

Contents?: true

Size: 908 Bytes

Versions: 174

Compression:

Stored size: 908 Bytes

Contents

# This migration comes from active_storage (originally 20170806125915)
class CreateActiveStorageTables < ActiveRecord::Migration[5.2]
  def change
    create_table :active_storage_blobs do |t|
      t.string   :key,        null: false
      t.string   :filename,   null: false
      t.string   :content_type
      t.text     :metadata
      t.bigint   :byte_size,  null: false
      t.string   :checksum,   null: false
      t.datetime :created_at, null: false

      t.index [ :key ], unique: true
    end

    create_table :active_storage_attachments do |t|
      t.string     :name,     null: false
      t.references :record,   null: false, polymorphic: true, index: false
      t.references :blob,     null: false

      t.datetime :created_at, null: false

      t.index [ :record_type, :record_id, :name, :blob_id ], name: "index_active_storage_attachments_uniqueness", unique: true
    end
  end
end

Version data entries

174 entries across 173 versions & 24 rubygems

Version Path
comfortable_mexican_sofa-2.0.13 db/migrate/00_create_active_storage_tables.active_storage.rb
comfortable_mexican_sofa-2.0.12 db/migrate/00_create_active_storage_tables.active_storage.rb
comfortable_mexican_sofa-2.0.11 db/migrate/00_create_active_storage_tables.active_storage.rb
comfortable_mexican_sofa-2.0.10 db/migrate/00_create_active_storage_tables.active_storage.rb
comfortable_mexican_sofa-2.0.9 db/migrate/00_create_active_storage_tables.active_storage.rb
comfortable_mexican_sofa-2.0.8 db/migrate/00_create_active_storage_tables.active_storage.rb
comfortable_mexican_sofa-2.0.7 db/migrate/00_create_active_storage_tables.active_storage.rb
comfortable_mexican_sofa-2.0.6 db/migrate/00_create_active_storage_tables.active_storage.rb
comfortable_mexican_sofa-2.0.5 db/migrate/00_create_active_storage_tables.active_storage.rb
comfortable_mexican_sofa-2.0.4 db/migrate/00_create_active_storage_tables.active_storage.rb
comfortable_mexican_sofa-2.0.3 db/migrate/00_create_active_storage_tables.active_storage.rb
comfortable_mexican_sofa-2.0.2 db/migrate/00_create_active_storage_tables.active_storage.rb
comfortable_mexican_sofa-2.0.1 db/migrate/00_create_active_storage_tables.active_storage.rb
comfortable_mexican_sofa-2.0.0 db/migrate/00_create_active_storage_tables.active_storage.rb