Sha256: fb9533b96ccb51f0d862797c3641598faa67f51925580d0f966481b69ec9e256

Contents?: true

Size: 787 Bytes

Versions: 53

Compression:

Stored size: 787 Bytes

Contents

class CreatePhcpressproFriendlyIdSlugs < ActiveRecord::Migration[5.1]
  def change

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

  end
end

Version data entries

53 entries across 53 versions & 1 rubygems

Version Path
phcpresspro-18.0.0 db/migrate/20170509002355_create_phcpresspro_friendly_id_slugs.rb
phcpresspro-17.0.0 db/migrate/20170509002355_create_phcpresspro_friendly_id_slugs.rb
phcpresspro-16.2.0 db/migrate/20170509002355_create_phcpresspro_friendly_id_slugs.rb
phcpresspro-16.1.0 db/migrate/20170509002355_create_phcpresspro_friendly_id_slugs.rb
phcpresspro-16.0.0 db/migrate/20170509002355_create_phcpresspro_friendly_id_slugs.rb
phcpresspro-15.6.0 db/migrate/20170509002355_create_phcpresspro_friendly_id_slugs.rb
phcpresspro-15.5.0 db/migrate/20170509002355_create_phcpresspro_friendly_id_slugs.rb
phcpresspro-15.4.0 db/migrate/20170509002355_create_phcpresspro_friendly_id_slugs.rb
phcpresspro-15.3.0 db/migrate/20170509002355_create_phcpresspro_friendly_id_slugs.rb
phcpresspro-15.2.0 db/migrate/20170509002355_create_phcpresspro_friendly_id_slugs.rb
phcpresspro-15.1.0 db/migrate/20170509002355_create_phcpresspro_friendly_id_slugs.rb
phcpresspro-15.0.0 db/migrate/20170509002355_create_phcpresspro_friendly_id_slugs.rb
phcpresspro-14.1.0 db/migrate/20170509002355_create_phcpresspro_friendly_id_slugs.rb