task/3382: improve helper SQL-script.

This commit is contained in:
Tom Zhao 2024-07-11 15:50:25 +02:00
parent d62ad0817a
commit f2ae73d35c

@ -1448,4 +1448,8 @@ select table_name, column_name, constraint_name, referenced_table_name, referenc
from information_schema.key_column_usage
where table_schema = 'tozh4728' and table_name = 'ActivityTemplate' and constraint_name != 'PRIMARY';
select table_name, column_name, constraint_name, referenced_table_name, referenced_column_name
from information_schema.key_column_usage
where table_schema = 'tozh4728' and constraint_name != 'PRIMARY' order by constraint_name;
*/