Laravel

[Laravel] migration 으로 column default 를 current_timestamp로 변경하기

먹세 2022. 3. 23. 15:33
public function up()
    {
        Schema::table('users', function (Blueprint $table) {
            // 생성
            $table->timestamp('created_at')->useCurrent();
            
            // 업데이트
            $table->dateTime('created_at')->default('CURRENT_TIMESTAMP')->nullable()->change();
        });
    }
반응형