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