Sha256: cdf9325fc81488f06735f66ff67571efd479d9fd1b3ffabef7f1307afcbf002d
Contents?: true
Size: 509 Bytes
Versions: 1
Compression:
Stored size: 509 Bytes
Contents
class CreateBusinesses < ActiveRecord::Migration def change create_table :businesses, options: 'DEFAULT CHARSET=utf8' do |t| t.string :name, null: false t.string :type, null: false t.string :phone t.string :fax t.string :email t.string :website_url t.string :logo_url t.string :business_additional_information t.timestamps end add_index :businesses, :name add_index :businesses, :type add_index :businesses, [:name, :type] end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
reso-0.1.0.0 | lib/generators/reso/templates/create_businesses.rb |