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

#ifndef ADD_COLUMN_HXX
#define ADD_COLUMN_HXX

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

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

#if CVER > 1
  int num;
#endif
};

#endif // ADD_COLUMN_HXX