Class: CreateFriendlyIdSlugs

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/railsbricks/foundation/db/migrate/20131103142222_create_friendly_id_slugs.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
9
10
11
12
13
14
# File 'lib/railsbricks/foundation/db/migrate/20131103142222_create_friendly_id_slugs.rb', line 2

def change
  create_table :friendly_id_slugs do |t|
    t.string   :slug,           :null => false
    t.integer  :sluggable_id,   :null => false
    t.string   :sluggable_type, :limit => 50
    t.string   :scope
    t.datetime :created_at
  end
  add_index :friendly_id_slugs, :sluggable_id
  add_index :friendly_id_slugs, [:slug, :sluggable_type]
  add_index :friendly_id_slugs, [:slug, :sluggable_type, :scope], :unique => true
  add_index :friendly_id_slugs, :sluggable_type
end