Sha256: 836b993d98e5c7bfe8a5375185e80932bd15de8bd27f5ecd2c4b3514e30e8c4d

Contents?: true

Size: 667 Bytes

Versions: 8

Compression:

Stored size: 667 Bytes

Contents

class CreateFriendlyIdSlugs < ActiveRecord::Migration[5.1]

  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], length: { slug: 140, sluggable_type: 50 }
    add_index :friendly_id_slugs, [:slug, :sluggable_type, :scope], length: { slug: 70, sluggable_type: 50, scope: 70 }, unique: true
    add_index :friendly_id_slugs, :sluggable_type
  end

end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
phcscriptcdnpro-11.2.0 db/migrate/20170423035208_create_friendly_id_slugs.rb
phcscriptcdnpro-11.1.1 db/migrate/20170423035208_create_friendly_id_slugs.rb
phcscriptcdnpro-11.1.0 db/migrate/20170423035208_create_friendly_id_slugs.rb
phcscriptcdnpro-11.0.3 db/migrate/20170423035208_create_friendly_id_slugs.rb
phcscriptcdnpro-11.0.2 db/migrate/20170423035208_create_friendly_id_slugs.rb
phcscriptcdnpro-11.0.1 db/migrate/20170423035208_create_friendly_id_slugs.rb
phcscriptcdnpro-11.0.0 db/migrate/20170423035208_create_friendly_id_slugs.rb
phcscriptcdnpro-10.0.1 db/migrate/20170423035208_create_friendly_id_slugs.rb