Hotkey | Description |
---|---|
ctrl-a c | create new window |
ctrl-a A | set window name |
ctrl-a w | show all windows |
ctrl-a \ | switch to window n |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create table if not exists deps_saved_ddl | |
( | |
deps_id serial primary key, | |
deps_view_schema name, | |
deps_view_name name, | |
deps_ddl_to_run text | |
); | |
create or replace function deps_save_and_drop_dependencies(p_view_schema name, p_view_name name) returns void as | |
$$ |