Class: CreateContentBuilderImages

Inherits:
Object
  • Object
show all
Defined in:
lib/generators/templates/create_content_builder_image_migration.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
9
# File 'lib/generators/templates/create_content_builder_image_migration.rb', line 2

def change
  create_table :content_builder_images do |t|
    t.string :image
    t.references :content_builder, index: true, foreign_key: true

    t.timestamps null: false
  end
end