DistroPropaganda/code/rails32/depot_t/lib/tasks/db_schema_migrations.rake
2018-11-24 13:20:20 +01:00

7 lines
229 B
Ruby

namespace :db do
desc "Prints the migrated versions"
task :schema_migrations => :environment do
puts ActiveRecord::Base.connection.select_values(
'select version from schema_migrations order by version' )
end
end