Sha256: c7076fddab1df19112c0d3e266fefa9c0ebbc72151f71f5081e6d0f3f9cd54b2
Contents?: true
Size: 408 Bytes
Versions: 2
Compression:
Stored size: 408 Bytes
Contents
class AddPrettyNameToSpreeTaxons < ActiveRecord::Migration[6.1] def change add_column :spree_taxons, :pretty_name, :string, null: true, if_not_exists: true add_index :spree_taxons, :pretty_name, if_not_exists: true add_column :spree_taxon_translations, :pretty_name, :string, null: true, if_not_exists: true add_index :spree_taxon_translations, :pretty_name, if_not_exists: true end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
spree_core-4.10.1 | db/migrate/20240822163534_add_pretty_name_to_spree_taxons.rb |
spree_core-4.10.0 | db/migrate/20240822163534_add_pretty_name_to_spree_taxons.rb |