renamed column to table_column and constraint to table_constraint.
This commit is contained in:
+14
-14
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user