Would be cool be able to create some base table data and have your tables just extend off it so you dont have to type so much… and updating all your tables would be easy. Something like this:
TableBase standardTable {
active boolean
createdOn datetime
modifiedOn datetime
}
Table user Extends standardTable {
id int [pk]
firstName string
lastName string
}