diff options
author | Michael Koziarski <michael@koziarski.com> | 2008-02-20 00:58:07 +0000 |
---|---|---|
committer | Michael Koziarski <michael@koziarski.com> | 2008-02-20 00:58:07 +0000 |
commit | 4eb1413e3ba603608ba27d55fa0d1aa18f7e0223 (patch) | |
tree | 1335db3c397cc7028488696e49c6aaba140c20f4 /activerecord/Rakefile | |
parent | 921752c7d594850e3d4a6d5c72459310fdf5d0f6 (diff) | |
download | rails-4eb1413e3ba603608ba27d55fa0d1aa18f7e0223.tar.gz rails-4eb1413e3ba603608ba27d55fa0d1aa18f7e0223.tar.bz2 rails-4eb1413e3ba603608ba27d55fa0d1aa18f7e0223.zip |
Cleanup whitespace and remove keys instead of providing nil
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8907 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/Rakefile')
-rwxr-xr-x | activerecord/Rakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/Rakefile b/activerecord/Rakefile index 3c5ba6c285..94277704d1 100755 --- a/activerecord/Rakefile +++ b/activerecord/Rakefile @@ -71,8 +71,8 @@ namespace :postgresql do task :build_databases do %x( createdb activerecord_unittest ) %x( createdb activerecord_unittest2 ) - %x( psql activerecord_unittest -f #{File.join(SCHEMA_ROOT, 'postgresql.sql')} ) - %x( psql activerecord_unittest2 -f #{File.join(SCHEMA_ROOT, 'postgresql2.sql')} ) + %x( psql activerecord_unittest -f #{File.join(SCHEMA_ROOT, 'postgresql.sql')} ) + %x( psql activerecord_unittest2 -f #{File.join(SCHEMA_ROOT, 'postgresql2.sql')} ) end desc 'Drop the PostgreSQL test databases' |