Rails Migrations: Set a Default Date for a column

class AddStartDateToEmployee < ActiveRecord::Migration[5.2]
  def change
    add_column :employees, :start_date, :date, index: true, default: '1900-01-01'
  end
end