darcys22 / godbledger

Accounting Software with GRPC endpoints and SQL Backends
https://www.godbledger.com/
GNU General Public License v3.0
480 stars 56 forks source link

Rename Brief in the transactions table to description #171

Closed darcys22 closed 2 years ago

darcys22 commented 2 years ago

to keep things consistent

00Masato commented 2 years ago

@darcys22 Hi, Can I give it a try?

darcys22 commented 2 years ago

Hi @00Masato

You are very welcome to give it a go!

Key places to look are in the database folders.

https://github.com/darcys22/godbledger/blob/master/godbledger/db/mysqldb/mysqldb.go

That file for example is where the MySQL database is initialised and sqlite has a pretty much identical file under db/sqlite3db. They both have an InitDB() function which builds the initial database. In there you will be able to see where the Transaction table is built.

but you should just be able to ctrl-f for brief in the 4 files under godbledger/db to find all the references to that column.

Hopefully that makes some sense, feel free to ask any questions and ill be happy to help :)

00Masato commented 2 years ago

@darcys22 Raised PR. Please review it!

darcys22 commented 2 years ago

Thank you!