Closed ob-ivan closed 11 years ago
There are three modes application can run:
Each mode requires its own set of tables in database to run on.
Currently production tables are named as is, e.g. exercise, while development tables are prefixed with _test_, e.g. _test_exercise.
exercise
_test_
_test_exercise
It would be much cleaner if each mode had its own prefix defined, like following:
prod_
dev_
test_
Done.
Just referencing #139 to let it know this issue is closed now.
There are three modes application can run:
Each mode requires its own set of tables in database to run on.
Currently production tables are named as is, e.g.
exercise
, while development tables are prefixed with_test_
, e.g._test_exercise
.It would be much cleaner if each mode had its own prefix defined, like following:
prod_
for productiondev_
for developmenttest_
for testing