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

#ifndef TEST_HXX
#define TEST_HXX

#include <odb/core.hxx>

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

  int i;
  #pragma db index type("UNIQUE CONCURRENTLY") method("BTREE") member(i)
};

#endif // TEST_HXX