実際には、grails を使用して mysql データベースにレコードを手動で入力しましたが、同じテーブルの列に日付を表示したいと考えています。
これに対する解決策はありますかここに私のコントローラークラスがあります
class test {
String company_name
String contact_person
Integer phone_no
String status
String place
String address
static constraints = {
company_name(nullable:false)
contact_person(nullable:false)
phone_no(uinque:true,nullable:false)
status(nullable:false)
place(nullable:false)
address( nullable:false )
}
}