Created
December 29, 2014 13:21
-
-
Save jtsagata/af8f999d645d1bf2003c to your computer and use it in GitHub Desktop.
Database tasks for postgress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| namespace :tools do | |
| desc 'Clear the database' | |
| task :clear_db => :environment do |t,args| | |
| ActiveRecord::Base.establish_connection | |
| ActiveRecord::Base.connection.tables.each do |table| | |
| next if table == 'schema_migrations' | |
| ActiveRecord::Base.connection.execute("TRUNCATE #{table}") | |
| end | |
| end | |
| desc 'Delete all tables (but not the database)' | |
| task :drop_schema => :environment do |t,args| | |
| ActiveRecord::Base.establish_connection | |
| ActiveRecord::Base.connection.execute("DROP SCHEMA public CASCADE") | |
| ActiveRecord::Base.connection.execute("CREATE SCHEMA public") | |
| ActiveRecord::Base.connection.execute("GRANT ALL ON SCHEMA public TO postgres") | |
| ActiveRecord::Base.connection.execute("GRANT ALL ON SCHEMA public TO public") | |
| ActiveRecord::Base.connection.execute("COMMENT ON SCHEMA public IS 'standard public schema'") | |
| end | |
| desc 'Recreate the database and seed' | |
| task :redo_db => :environment do |t,args| | |
| # Executes the dependencies, but only once | |
| Rake::Task["tools:drop_schema"].invoke | |
| Rake::Task["db:migrate"].invoke | |
| Rake::Task["db:migrate:status"].invoke | |
| Rake::Task["db:structure:dump"].invoke | |
| Rake::Task["db:seed"].invoke | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment