スキーマ: Messages
  Groonga::Schema.define do |schema|
    schema.create_table("Messages") do |table|
      table.short_text("subject")
      table.short_text("from")
      table.short_text("to")
      table.text("body")
    end
    ...