Methods

Rails::DataMapper::Storage::Postgres

Public Instance Methods

_create() click to toggle source
# File lib/dm-rails/storage.rb, line 186
def _create
  system(
    'createdb',
    '-E',
    charset,
    '-U',
    username,
    database
  )
end
_drop() click to toggle source
# File lib/dm-rails/storage.rb, line 197
def _drop
  system(
    'dropdb',
    '-U',
    username,
    database
  )
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.