Add Sequences to API.

This commit is contained in:
niiyz
2015-11-13 21:36:13 +09:00
parent 4c1bb758ce
commit 232790b452
4 changed files with 12 additions and 0 deletions

View File

@@ -31,6 +31,8 @@ WHERE table_name = $1`
PG_TABLES = `SELECT table_name FROM information_schema.tables WHERE table_schema = 'public' ORDER BY table_schema,table_name`
PG_SEQUENCES = `SELECT sequence_name FROM information_schema.sequences WHERE sequence_schema = 'public' ORDER BY sequence_name`
PG_ACTIVITY = `SELECT
datname,
query,