crowdAI/crowdai

View on GitHub
doc/technical/archived_migrations/20160208191655_create_bootsy_images.bootsy.rb

Summary

Maintainability
A
0 mins
Test Coverage
# This migration comes from bootsy (originally 20120624171333)
class CreateBootsyImages < ActiveRecord::Migration
  def change
    create_table :bootsy_images do |t|
      t.string :image_file
      t.references :image_gallery
      t.timestamps
    end
  end
end