0

grails 2.1.2を使用してアプリケーションを開発してから、2.2.0にアップグレードします。

私はドメインクラスを持っています

class Concurrence {
    Concurrence parent = null
    Request request 
    Person approver
    int status = 0
    Date processed = null
}

class Request {
    String no
    Folder folder
    String fiscalYear
    String notes
    static hasOne = [category: Category, channel : Channel]
    Date created
    Date submitted = null
    Date approved = null
    Date updated
    Person requestor        
    int status = 0
    boolean deleted = false
    Person processedBy = null
    boolean processed = false
    Date processedDate = null

    static hasMany = [documents:RequestDocument, concurrences:Concurrence, approvals:Approval, finalApprovals:FinalApproval, memos:Memo]
}

Concurrenceにプロパティ「リクエスト」があります

以前はすべて問題ありませんでしたが、grails 2.2.0を使用した後、そのドメインを保存できません。

フィールド'request_id'にはデフォルト値がありません

この問題を解決する方法について何か提案はありますか?または、2.1.2にダウングレードするか、リクエストプロパティ名の名前を変更する必要がありますか?

よろしくお願いします

4

1 に答える 1