relx 0.1.0
A Modern C++23 Type-Safe SQL Query Builder
Loading...
Searching...
No Matches
migrations.hpp
Go to the documentation of this file.
1#pragma once
2
5#include "migrations/core.hpp"
6#include "migrations/diff.hpp"
7#include "schema.hpp"
8
211namespace relx {
212
213// Re-export migration functionality in the relx namespace for easier access
214namespace migrations {
215// Main migration functions
216using ::relx::migrations::generate_create_table_migration;
217using ::relx::migrations::generate_drop_table_migration;
218using ::relx::migrations::generate_migration;
219
220// Essential types for using the API
221using ::relx::migrations::Migration;
222using ::relx::migrations::MigrationOptions;
223} // namespace migrations
224
225} // namespace relx
relx database connection