schema progress
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
add_library(matador-orm STATIC
|
||||
../../include/matador/orm/error_code.hpp
|
||||
../../include/matador/orm/schema.hpp
|
||||
../../include/matador/orm/session.hpp
|
||||
../../include/matador/orm/session_insert_builder.hpp
|
||||
../../include/matador/orm/session_query_builder.hpp
|
||||
@@ -71,6 +72,7 @@ add_library(matador-orm STATIC
|
||||
../../include/matador/sql/table.hpp
|
||||
orm/error_code.cpp
|
||||
orm/query_builder_exception.cpp
|
||||
orm/schema.cpp
|
||||
orm/session.cpp
|
||||
orm/session_insert_builder.cpp
|
||||
orm/session_query_builder.cpp
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
#include "matador/orm/schema.hpp"
|
||||
|
||||
namespace matador::orm {
|
||||
schema::schema( const std::string& name )
|
||||
: repo_(name){}
|
||||
}
|
||||
Reference in New Issue
Block a user