One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| DO $$ | |
| DECLARE | |
| tbl RECORD; | |
| col RECORD; | |
| seq RECORD; | |
| udt RECORD; | |
| schema RECORD; | |
| sql TEXT; | |
| default_expr TEXT; | |
| column_definitions TEXT; |
| ## Pre-requisite: You have to know your last commit message from your deleted branch. | |
| git reflog | |
| # Search for message in the list | |
| # a901eda HEAD@{18}: commit: <last commit message> | |
| # Now you have two options, either checkout revision or HEAD | |
| git checkout a901eda | |
| # Or | |
| git checkout HEAD@{18} |