lib/sequel_rails/storage/jdbc.rb in sequel-rails-0.9.17 vs lib/sequel_rails/storage/jdbc.rb in sequel-rails-1.0.0

- old
+ new

@@ -56,19 +56,19 @@ def _dump(filename) if _is_postgres? adapter = ::SequelRails::Storage::Postgres.new(config) adapter._dump(filename) else - fail NotImplementedError + raise NotImplementedError end end def _load(filename) if _is_postgres? adapter = ::SequelRails::Storage::Postgres.new(config) adapter._load(filename) else - fail NotImplementedError + raise NotImplementedError end end def schema_information_dump(migrator, sql_dump) if _is_postgres?