lib/dry/web/roda/skeletons/umbrella/Rakefile.tt in dry-web-roda-0.2.1 vs lib/dry/web/roda/skeletons/umbrella/Rakefile.tt in dry-web-roda-0.2.2

- old
+ new

@@ -35,10 +35,10 @@ desc "Dump database structure to db/structure.sql" task :dump do require "uri" uri = URI(DB.url) - dump = `pg_dump -h #{uri.hostname} -i -s -x -O #{uri.path.tr("/", "")}` + dump = `pg_dump -h #{uri.hostname} -s -x -O #{uri.path.tr("/", "")}` File.open "db/structure.sql", "w" do |file| file.write dump end end end