class AddSlugToDotations < ActiveRecord::Migration[5.2] def change add_column :dotations, :slug, :string, after: :id add_index :dotations, :slug, unique: true end end