モデルクラスの$timestamps変数をfalseにセットすればよい。
1 2 3 4 5 |
class WpUser extends Model { public $timestamps = false; }; |
参考サイト
timestampを無効にする場合 – ふたりはララベル (Laravel PHP Framework)
http://laravel.hatenablog.com/entry/2013/10/19/004831
最近はウェブ系アプリ中心、あとWindowsアプリちょっと
モデルクラスの$timestamps変数をfalseにセットすればよい。
1 2 3 4 5 |
class WpUser extends Model { public $timestamps = false; }; |
timestampを無効にする場合 – ふたりはララベル (Laravel PHP Framework)
http://laravel.hatenablog.com/entry/2013/10/19/004831