appirits/comable

View on GitHub
core/db/migrate/20150701094210_create_comable_navigation.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateComableNavigation < ActiveRecord::Migration
  def change
    create_table :comable_navigations do |t|
      t.string :name, null: false
      t.timestamps null: false
    end
  end
end