clairelee/directable

View on GitHub
db/migrate/20161116040940_create_productions.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateProductions < ActiveRecord::Migration
  def change
    create_table :productions do |t|
      t.string :name
      t.string :company
      t.datetime :opening_date

      t.timestamps null: false
    end
  end
end