appirits/comable

View on GitHub
core/db/migrate/20140926063541_create_comable_stores.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateComableStores < ActiveRecord::Migration
  def change
    create_table :comable_stores do |t|
      t.string :name
      t.string :meta_keywords
      t.string :meta_description
      t.string :email
      t.timestamps null: false
    end
  end
end