We currently have a create_schema.sql file that stores the structure of the schema.
To make on-boarding even easier for new SWEs, let's insert default values through another file: populate-schema.sql - This will populate everything necessary (including dummy data) for an SWE to start testing the system, without configuring anything at all.
This will be useful for #1, where we will need to know the exact ID of the default water product and the default anonymous customer type... well, actually, all the default values will be set through this file, even configuration values.
We currently have a
create_schema.sqlfile that stores the structure of the schema.To make on-boarding even easier for new SWEs, let's insert default values through another file:
populate-schema.sql- This will populate everything necessary (including dummy data) for an SWE to start testing the system, without configuring anything at all.This will be useful for #1, where we will need to know the exact ID of the default water product and the default anonymous customer type... well, actually, all the default values will be set through this file, even configuration values.