From 7dbf58f9486fb3b3a021bbfab9df03af5a8f0fb3 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 7 Feb 2013 17:52:49 +0200 Subject: Use multi-pass table creation in MySQL This deals with table creation order and circular dependencies. Unfortunately, there doesn't seem to be a way in MySQL to drop a foreign key only if it exists without resorting to stored procedures. --- common/schema/embedded/order/test2.hxx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 common/schema/embedded/order/test2.hxx (limited to 'common/schema/embedded/order/test2.hxx') diff --git a/common/schema/embedded/order/test2.hxx b/common/schema/embedded/order/test2.hxx new file mode 100644 index 0000000..870ca51 --- /dev/null +++ b/common/schema/embedded/order/test2.hxx @@ -0,0 +1,18 @@ +// file : common/schema/embedded/order/test2.hxx +// copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef TEST2_HXX +#define TEST2_HXX + +#include + +#include "test1.hxx" + +#pragma db object +struct derived: base +{ + int num; +}; + +#endif // TEST2_HXX -- cgit v1.1