列のデフォルトのタイムゾーンを日本標準時に設定する
DateColumn datetime default (DATETIME(‘now’,’localtime’))
※(DATETIME(‘now’,’localtime’)) と括弧で DATETIME(‘now’,’localtime’) を囲まないとエラーが出る
UTC の場合
DateColumn TIMESTAMP DEFAULT CURRENT_TIMESTAMP
Sample code collection
DateColumn datetime default (DATETIME(‘now’,’localtime’))
※(DATETIME(‘now’,’localtime’)) と括弧で DATETIME(‘now’,’localtime’) を囲まないとエラーが出る
UTC の場合
DateColumn TIMESTAMP DEFAULT CURRENT_TIMESTAMP