スキーマ定義
高レベルスキーマ定義API(QL-API相当)

  Groogna::Schema.define do |schema|
    schema.create_table("Users") do |table|
      table.short_text("name")
      table.int32("age")
      table.timestamps
    end
  end