我想更新模型上的字段(status
)。我将从数据库中检索并为status
列分配一个新值。但是在模型保存之后,我看到另一个日期字段(published_at
)也更改为与updated_at
相同。
当用户点击链接http://localhost/dashboard/gallery/publish/1时,该操作就会运行。
我不知道为什么published_at
更新为自动且与updated_at
相同?
这是控制器代码:
<?php
class GalleryController extends Controller
{
/**
* Approve to publish the gallery on the web.
*
* @param int $id
* @return Response
*/
public function getPublish($id)
{
$gallery = Gallery::whereId($id)->firstOrFail();
$gallery->status = Gallery::STT_PUBLISH;
$gallery->save();
return redirect( route('backend::gallery.edit',[$gallery->id]) )->with('status', 'Done');
}
}
?>
和图库模型:
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class Gallery extends Model
{
use SoftDeletes;
protected $table = 'gallery';
protected $fillable = ['title', 'slug', 'content', 'category_id', 'type'];
protected $guarded = ['published_at','creator_id','thumbnail'];
protected $dates = ['deleted_at', 'published_at'];
}
?>
和迁移功能:
public function up()
{
Schema::create('gallery', function (Blueprint $table) {
$table->increments('id')->unsigned();
$table->string('slug')->unique();
$table->tinyInteger('type')->unsigned();
$table->integer('category_id')->unsigned()->default(0);
$table->string('thumbnail');
$table->string('title');
$table->text('content');
$table->integer('status')->unsigned()->default(0);
$table->timestamp('published_at');
$table->integer('creator_id')->unsigned();
$table->timestamps();
$table->index(['slug']);
$table->softDeletes();
});
Schema::table('gallery', function (Blueprint $table) {
$table->foreign('category_id')->references('id')->on('category');
$table->foreign('creator_id')->references('id')->on('users');
});
}
更新
我在迁移功能中看到这个配置会产生问题,这里:
$table->timestamp('published_at');
这句话就像这样创建SQL:
CREATE TABLE `gallery` (
...
`published_at` Timestamp NOT NULL ON UPDATE CURRENT_TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
...
)
那么,如何设置一个时间戳字段,这不是当前时间的自动更新?
更新2
完成后,我修改了迁移,只使用dateTime
代替timestamp
。
使用它$table->dateTime('published_at');
,此语句不会在CURRENT_TIMESTAMP上自动更新。
答案 0 :(得分:5)
看起来正在发生的事情是MySQL(或您正在使用的数据库)正在更新日期,而不是Laravel。
您需要更改:
$table->timestamp('published_at');
为:
$table->dateTime('published_at');
然后执行php artisan migrate:refresh
回滚并重新创建表格。
答案 1 :(得分:4)
这篇文章已经过时了但对于任何在这里遇到此问题的人来说这是最简单的解决方案。在迁移中,时间戳字段必须是可空的。比这个字段没有自动更新触发器。
$table->timestamp('published_at')->nullable();
无需使用$table->dateTime()
代替$table->timestamp()
。
答案 2 :(得分:0)
无需将迁移更改为
$table->dateTime('published_at');
只要做到
$table->timestamp('published_at')->nullable();
要显示日期,您可以在模型中使用类似的内容
public function getShortDateTimeFromTimestamp($value)
{
if(isset($value))
{
$date = date_create();
date_timestamp_set($date, $value);
return date_format($date, 'd-m-Y H:i');
}
return false;
}
在视图中
Published {{ $post->getShortDateTimeFromTimestamp($post->published_at) }}
要在存储/更新资源时使用当前时间戳,可以使用
published_at = \Carbon\Carbon::now();
答案 3 :(得分:0)
这不是Laravel的问题,而是MySQL的“功能”。
TIMESTAMP和DATETIME列没有自动属性,除非 它们是明确指定的,但有以下例外:如果 禁用explicit_defaults_for_timestamp系统变量,第一个 TIMESTAMP列同时具有DEFAULT CURRENT_TIMESTAMP和ON UPDATE CURRENT_TIMESTAMP(如果两个都没有明确指定)。
官方网站删除了旧版本的参考手册,但是当我用谷歌搜索该问题时,从也提到该问题的来源中,似乎该功能也适用于旧版本的MySQL。
因此,您也可以尝试通过
解决问题,而不是将$table->timestamp('published_at');
更改为$table->dateTime('published_at');
。
$table->timestamp('published_at')->default(DB::raw('CURRENT_TIMESTAMP'));
或$table->timestamp('published_at')->nullable()
(默认值为null)$table->timestamps();
之后移动行,以使pulibhsed_at
不是第一个时间戳。默认的created_at
和updated_at
是可以为空的(即默认值为null),并且不会触发“功能” 答案 4 :(得分:-1)
替代解决方案是创建一个运行此查询的迁移,以删除该列的ON UPDATE触发器:
ALTER TABLE queued_posts CHANGE scheduled_publish_time scheduled_publish_time TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP