zipperer / migrate_database_with_michael

0 stars 0 forks source link

Create database in postgres #20

Closed zipperer closed 10 months ago

zipperer commented 10 months ago

Follow steps from postgres_script.txt

== create database in postgres ==
psql> \l # list of databases
psql> \d # list of tables and related objects
psql> CREATE DATABASE example_db;
psql> \l
psql> \connect example_db
zipperer commented 10 months ago

We did this during #2 .