7 lines
151 B
Go
7 lines
151 B
Go
package migrations
|
|
|
|
const ProbeUsersTable = `
|
|
SELECT COUNT(*)
|
|
FROM information_schema.tables
|
|
WHERE table_schema = DATABASE() AND table_name = 'users'`
|