rroongaのDSL
  Groonga::Schema.define do |schema|
    options = {type: :hash,
               key_type: "ShortText"}
    schema.create_table("Entries", options) do |table|
      table.short_text("name")
      # ...
    end
    # ...
  end