aboutsummaryrefslogtreecommitdiff
path: root/mysql/index/test.hxx
blob: 27eeaf51d235b52a0ab5e1acdcf7f340cad996b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// file      : mysql/template/test.hxx
// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

#ifndef TEST_HXX
#define TEST_HXX

#include <string>
#include <odb/core.hxx>

#pragma db object
struct object
{
  #pragma db id auto
  unsigned long id_;

  std::string s;
  #pragma db index method("BTREE") member(s, "(200) DESC")
};

#endif // TEST_HXX