mirror of
https://github.com/dbgate/dbgate
synced 2024-11-08 04:35:58 +00:00
8 lines
213 B
JavaScript
8 lines
213 B
JavaScript
module.exports = `
|
|
select
|
|
TABLE_NAME,
|
|
case when ENGINE='InnoDB' then CREATE_TIME else coalesce(UPDATE_TIME, CREATE_TIME) end as ALTER_TIME
|
|
from information_schema.tables
|
|
where TABLE_SCHEMA = '#DATABASE#'
|
|
`;
|