Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 384 Bytes

README.MD

File metadata and controls

15 lines (11 loc) · 384 Bytes

Run the following command to start the Flyway migration process:

  1. create database
  • createdb attributes
  • GRANT ALL ON ALL TABLES IN SCHEMA public TO postgres;
  1. set env: FLYWAY_PASSWORD=mysecretpassword
  2. info
  • flyway -environment=localhost info
  1. migrate localhost environment:
  • flyway -environment=localhost migrate
  1. connect to schema:
  • psql -h localhost attributes