module Sequel::Plugins::PreparedStatementsSafe

def self.apply(model)

Depend on the prepared_statements plugin
def self.apply(model)
  model.plugin(:prepared_statements)
end

def self.configure(model)

Set the column defaults to use when creating on the model.
def self.configure(model)
  model.send(:set_prepared_statements_column_defaults)
end