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

#ifndef DROP_INDEX_HXX
#define DROP_INDEX_HXX

#pragma db model version(BVER, CVER, open)

#pragma db object
struct object
{
  #pragma db id auto
  int id;

#if CVER == 1
  #pragma db index
#endif
  int num;
};

#endif // DROP_INDEX_HXX