clairelee/directable

View on GitHub
db/migrate/20161122015244_create_instruments.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateInstruments < ActiveRecord::Migration
  def change
    create_table :instruments do |t|
      t.string :name
    end
  end
end