我的created_at
和updated_at
字段会发生什么变化?我正在使用 laravel5.1 。我在桌子上有这个:
=====================================
名称类型默认为
created_at |时间戳| 0000-00-00 00:00:00
updated_at |时间戳| 0000-00-00 00:00:00
迁移是这样的:
$table->increments('id')->unsigned();
$table->timestamps();
结果
The red is my actual date, the first green is the created_at and the second green is the updated_at