luizpicolo/rails_admin_featured_content

View on GitHub
lib/generators/templates/create_featured_content_images_migration.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateFeaturedContentImages < ActiveRecord::Migration
  def change
    create_table :featured_content_images do |t|
      t.string :image
      t.references :featured_content, index: true, foreign_key: true

      t.timestamps null: false
    end
  end
end