diff options
Diffstat (limited to 'common/changelog/drop-column.hxx')
-rw-r--r-- | common/changelog/drop-column.hxx | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/common/changelog/drop-column.hxx b/common/changelog/drop-column.hxx new file mode 100644 index 0000000..70fbcba --- /dev/null +++ b/common/changelog/drop-column.hxx @@ -0,0 +1,21 @@ +// file : common/changelog/drop-column.hxx +// copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef DROP_COLUMN_HXX +#define DROP_COLUMN_HXX + +#pragma db model version(BVER, CVER, true) + +#pragma db object +struct object +{ + #pragma db id auto + int id; + +#if CVER == 1 + int num; +#endif +}; + +#endif // DROP_COLUMN_HXX |