jbeardly-junkyard / gitquery

SQL interface to Git repositories, written in Go.
MIT License
0 stars 0 forks source link

Make database structure table names readable #20

Open jfontan opened 6 years ago

jfontan commented 6 years ago

Right now the names are 2/3 characters:

type Database struct {
    name string
    cr   sql.Table
    tr   sql.Table
    rr   sql.Table
    ter  sql.Table
    br   sql.Table
    or   sql.Table
    rmr  sql.Table
}

Change the names to something that could be understood.