Sha256: 049cac55fda8bbffb19d0f76f0154cb7ccacdd55872e1d1334df6a02ffecc66c
Contents?: true
Size: 458 Bytes
Versions: 5
Compression:
Stored size: 458 Bytes
Contents
class CreateFaeTextFields < ActiveRecord::Migration[4.2] def change create_table :fae_text_fields do |t| t.references :contentable, polymorphic: true, index: true t.string :attached_as, index: true t.string :label t.string :content t.integer :position, default: 0, index: true t.boolean :on_stage, default: true, index: true t.boolean :on_prod, default: false, index: true t.timestamps end end end
Version data entries
5 entries across 5 versions & 2 rubygems