Fake code:
struct DbColumn {
string name;
bool unique ;
bool signed ;
bool nullable ;
}
struct Order {
uint id;
@DbColumn({ .nullable= true}) // not working
string order_id;
@DbColumn({ :nullable= true}) // not working
string order_time;
@DbColumn(nullable= true) // not working
string order_time;
}
