rails-stall/stall

View on GitHub
db/migrate/20170217142050_create_stall_manufacturers.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateStallManufacturers < ActiveRecord::Migration
  def change
    create_table :stall_manufacturers do |t|
      t.string :name
      t.attachment :logo

      t.timestamps null: false
    end
  end
end