Is there any name convention for files?
Right now we got convention:
[ order number | operation with table name ]
db/changelog/ 003-create-table-financial_transactions.yaml
db/changelog/ 004-insert-into-financial_transactions.yaml
Is order number good idea?
Rest of the file name: create table TABLE_NAME? It should be name of the table (financial_transactions
) or name of programming language entity (FinancialTranscation
)?
Data for table financial_transaction
:
src/main/resources/db/changelog/data/financialTransaction.csv
So again - name should be name of the table or entity?
financialTransaction.csv
financial_transaction.csv
FinancialTransaction.csv