Change name of Laravel's created_at and updated_at

前端 未结 4 1186
眼角桃花
眼角桃花 2020-12-02 14:09

Can I map Laravel\'s timestamps from:

created_at to post_date and post_date_gmt?

updated_at to post

4条回答
  •  没有蜡笔的小新
    2020-12-02 14:53

    Just put this in your tables model file,

     const CREATED_AT = 'your_custom_created_at_field_name';
     const UPDATED_AT = 'your_custom_updated_at_field_name';
    

    My model looks like this for avoiding confusions

    class diarymodule extends Model
    {
        protected $table = 'diarymodule';
        const CREATED_AT = 'CreatedDate';
        const UPDATED_AT = 'UpdatedDate';
    }
    

提交回复
热议问题