db_helpers/
legacy.rs

1pub trait Table
2{
3	fn table_name() -> String;
4}
5pub trait Index
6{
7	fn index() -> Option<String>
8	{
9		None
10	}
11}