create a new feature branch off of the dev branch 'feature/dockerize-app'
can you create a subfolder in root of repo and load all the sql commands into the following format
code exists already just need to migrate it.
├── db-init/
│ ├── 00-init-schema.sql (existing code from ddl sql to initialize schema)
│ ├── 01-create-tables.sql (existing sql to initialize tables)
│ └── 02-populate-data.sql (existing sql used to populate tables)
create a new feature branch off of the dev branch 'feature/dockerize-app' can you create a subfolder in root of repo and load all the sql commands into the following format code exists already just need to migrate it.
├── db-init/ │ ├── 00-init-schema.sql (existing code from ddl sql to initialize schema) │ ├── 01-create-tables.sql (existing sql to initialize tables) │ └── 02-populate-data.sql (existing sql used to populate tables)