# File lib/rbase/builder.rb, line 22
  def self.create_table(name, options = {})
    options[:language] ||= LANGUAGE_RUSSIAN_WINDOWS
    
    schema = Schema.new
    yield schema if block_given?
    
    Table.create name, schema, options
  end