// file : evolution/alter-column/model.hxx // license : GNU GPL v2; see accompanying LICENSE file #ifndef MODEL_VERSION # error model.hxx included directly #endif #include #include #include #include // DATABASE_XXX #pragma db model version(1, MODEL_VERSION) #define MODEL_NAMESPACE_IMPL(V) v##V #define MODEL_NAMESPACE(V) MODEL_NAMESPACE_IMPL(V) namespace MODEL_NAMESPACE(MODEL_VERSION) { #pragma db object struct object { object (unsigned long id = 0): id_ (id) {} #pragma db id unsigned long id_; // SQLite doesn't support altering of columns. // #ifndef DATABASE_SQLITE #if MODEL_VERSION == 2 odb::nullable str; unsigned long num; #else // Use nullable to be able to access during migration. // #pragma db not_null odb::nullable str; odb::nullable num; // Test adding NOT NULL column. It should be added NULL in pre // and then converted to NOT NULL in post. // #pragma db not_null odb::nullable num1; #endif #endif }; } #undef MODEL_NAMESPACE #undef MODEL_NAMESPACE_IMPL