Sha256: cb5808f076c6d268e319cf9e63883ec6c1411e24385d9bbb9c77b4f77753e75e
Contents?: true
Size: 878 Bytes
Versions: 2
Compression:
Stored size: 878 Bytes
Contents
class CreatePhcdevworksScriptsFriendlyIdSlugs < ActiveRecord::Migration[5.2] def change create_table :phcdevworks_scripts_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 :phcdevworks_scripts_friendly_id_slugs, :sluggable_id add_index :phcdevworks_scripts_friendly_id_slugs, [:slug, :sluggable_type], name: 'scriptcdnpro_fri_id_slugable_type', length: { slug: 140, sluggable_type: 50 } add_index :phcdevworks_scripts_friendly_id_slugs, [:slug, :sluggable_type, :scope], name: 'scriptcdnpro_fri_id_slugable_scope_type', length: { slug: 70, sluggable_type: 50, scope: 70 }, unique: true add_index :phcdevworks_scripts_friendly_id_slugs, :sluggable_type end end
Version data entries
2 entries across 2 versions & 1 rubygems