Sha256: 3104a4f8d8f4b9615bfcb9d876efc88dbc871039e29cc20e209e589cac7ee0c2

Contents?: true

Size: 766 Bytes

Versions: 5

Compression:

Stored size: 766 Bytes

Contents

class CreatePhcpressFriendlyIdSlugs < ActiveRecord::Migration[7.0]
  def change

    create_table :phcpress_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 :phcpress_friendly_id_slugs, :sluggable_id
    add_index :phcpress_friendly_id_slugs, [:slug, :sluggable_type], length: { slug: 140, sluggable_type: 50 }
    add_index :phcpress_friendly_id_slugs, [:slug, :sluggable_type, :scope], name: 'phcpress_fri_id_slugable_scope_type', length: { slug: 70, sluggable_type: 50, scope: 70 }, unique: true
    add_index :phcpress_friendly_id_slugs, :sluggable_type

  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
phcpress-57.0.4 db/migrate/20170509002355_create_phcpress_friendly_id_slugs.rb
phcpress-57.0.3 db/migrate/20170509002355_create_phcpress_friendly_id_slugs.rb
phcpress-57.0.2 db/migrate/20170509002355_create_phcpress_friendly_id_slugs.rb
phcpress-57.0.1 db/migrate/20170509002355_create_phcpress_friendly_id_slugs.rb
phcpress-57.0.0 db/migrate/20170509002355_create_phcpress_friendly_id_slugs.rb