blob: 22f4254b8f2f919a9a9e5acf33100838a57ab870 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#pragma once
#include <cstdint>
template <typename T>
struct Column
{
Column(T default_value):
value{default_value} {}
Column():
value{} {}
using real_type = T;
T value{};
};
struct Id: Column<std::size_t> { static constexpr auto name = "id_";
static constexpr auto options = "PRIMARY KEY AUTOINCREMENT"; };
|