File: ddl_create_index.sql

package info (click to toggle)
libpg-query 17-6.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 33,416 kB
  • sloc: ansic: 175,684; sql: 79,564; ruby: 1,605; makefile: 276; cpp: 221
file content (3 lines) | stat: -rw-r--r-- 173 bytes parent folder | download
1
2
3
CREATE UNIQUE INDEX schema_tables_database_id_schema_name_table_name_idx
ON public.schema_tables USING btree (database_id, schema_name, table_name)
WHERE removed_at IS NULL