Sha256: ccb50588fd13408c5dcf6bc36e134727b7326a79ccc07e544973e91860b68bce
Contents?: true
Size: 575 Bytes
Versions: 11
Compression:
Stored size: 575 Bytes
Contents
# This migration comes from fae (originally 20141008180718) class CreateFaeImagesTable < ActiveRecord::Migration def change create_table(:fae_images) do |t| t.string :name t.string :asset t.references :imageable, polymorphic: true, index: true t.references :faviconable, polymorphic: true, index: true t.string :alt t.string :caption t.integer :position, default: 0 t.string :attached_as, index: true t.boolean :on_stage, default: true t.boolean :on_prod, default: false t.timestamps end end end
Version data entries
11 entries across 11 versions & 1 rubygems