#pragma once #include template struct Column { using real_type = T; T value; }; struct Id: Column { static constexpr auto name = "id_"; static constexpr auto options = "PRIMARY KEY AUTOINCREMENT"; };