Class: CreateListingProviders

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/reso/templates/create_listing_providers.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
9
10
11
12
# File 'lib/generators/reso/templates/create_listing_providers.rb', line 2

def change
  create_table :listing_providers, options: 'DEFAULT CHARSET=utf8' do |t|
    t.string :name, null: false
    t.string :url
    t.references :source_provider_category, null: false, index: true

    t.timestamps
  end
  add_index :listing_providers, :name
  add_index :listing_providers, :url
end