diff --git a/lib/tasks/db.rake b/lib/tasks/db.rake index 8e5c382f..39db898f 100644 --- a/lib/tasks/db.rake +++ b/lib/tasks/db.rake @@ -3,9 +3,9 @@ namespace :db do desc 'Bootstrap the database for the current RAILS_ENV (create, setup & seed if the database does not exist)' task bootstrap: :environment do + Rake::Task['db:create'].invoke if ActiveRecord::Base.connection.tables.empty? puts 'Bootstrapping the database...' - Rake::Task['db:create'].invoke Rake::Task['db:setup'].invoke Rake::Task['db:seed'].invoke else