renamed column to table_column and constraint to table_constraint.

This commit is contained in:
2025-12-31 13:01:54 +01:00
parent ab2d39407c
commit b9d35cbd4e
62 changed files with 424 additions and 423 deletions
+14 -14
View File
@@ -144,20 +144,20 @@ struct matador::utils::data_type_traits<job::job_mode, void> {
}
};
QUERY_HELPER( authors, AUTHOR, id, first_name, last_name, date_of_birth, year_of_birth, distinguished )
QUERY_HELPER( books, BOOK, id, author_id, title, published_in )
QUERY_HELPER( job, JOB, id, payload, type, description, state, mode )
QUERY_HELPER( payload, PAYLOAD, id )
QUERY_HELPER( temporary_table, TEMPORARY_TABLE, id );
QUERY_HELPER(customer, CUSTOMER, id, name, email, address)
QUERY_HELPER(product, PRODUCT, id, title, description, price, category)
QUERY_HELPER(category, CATEGORY, id, title, description)
QUERY_HELPER(cart, CART, id, items, owner)
// QUERY_HELPER( authors, AUTHOR, id, first_name, last_name, date_of_birth, year_of_birth, distinguished )
//
// QUERY_HELPER( books, BOOK, id, author_id, title, published_in )
//
// QUERY_HELPER( job, JOB, id, payload, type, description, state, mode )
//
// QUERY_HELPER( payload, PAYLOAD, id )
//
// QUERY_HELPER( temporary_table, TEMPORARY_TABLE, id );
//
// QUERY_HELPER(customer, CUSTOMER, id, name, email, address)
// QUERY_HELPER(product, PRODUCT, id, title, description, price, category)
// QUERY_HELPER(category, CATEGORY, id, title, description)
// QUERY_HELPER(cart, CART, id, items, owner)
int main() {
using namespace matador::sql;