DEV Community

Aman Sharma
Aman Sharma

Posted on

How to shift from SQLite to PostgreSQL

Here's the youtube video link.

https://youtu.be/nuVYte2Mu9Y

Here are the commands to do so.

CREATE DATABASE yourdbname;
CREATE USER youruser WITH ENCRYPTED PASSWORD 'yourpass';
GRANT ALL PRIVILEGES ON DATABASE yourdbname TO youruser;

Top comments (0)