summaryrefslogtreecommitdiff
path: root/odb/relational/sqlite/schema.cxx
blob: 195a71ecb2507418b397317147af2ef25b7d7347 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// file      : odb/relational/sqlite/schema.cxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
// license   : GNU GPL v3; see accompanying LICENSE file

#include <odb/relational/schema.hxx>

#include <odb/relational/sqlite/common.hxx>
#include <odb/relational/sqlite/context.hxx>

namespace relational
{
  namespace sqlite
  {
    namespace schema
    {
      namespace relational = relational::schema;

      //
      // Create.
      //
      struct object_columns: relational::object_columns
      {
        object_columns (base const& x): base (x) {}

        virtual void
        constraints (semantics::data_member& m)
        {
          base::constraints (m);

          if (m.count ("auto"))
          {
            if (options.sqlite_lax_auto_id ())
              os << " /*AUTOINCREMENT*/";
            else
              os << " AUTOINCREMENT";
          }
        }

      };
      entry<object_columns> object_columns_;
    }
  }
}