Sha256: 9fbcff2d2a4307d60c651b9c8a68f7d9b50fa861de9e14b929661b8a1ddee99a
Contents?: true
Size: 626 Bytes
Versions: 3
Compression:
Stored size: 626 Bytes
Contents
class CreateFriendlyIdSlugs < ActiveRecord::Migration def self.up 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 def self.down drop_table :friendly_id_slugs end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
friendly_id-5.0.0.rc1 | lib/friendly_id/migration.rb |
friendly_id-5.0.0.beta4 | lib/friendly_id/migration.rb |
friendly_id-5.0.0.beta3 | lib/friendly_id/migration.rb |