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();
        });
    }
반응형

'Laravel' 카테고리의 다른 글

[Laravel] From Subquery 작성방법  (0) 2022.12.13
[Laravel] updateOrInsert  (2) 2022.04.06
[Laravel] Queue 명령어  (0) 2022.02.15
[Laravel] 비동기 Job Queue 실행하기  (0) 2022.02.15
[Laravel] subMonth / addMonth 사용 시 주의사항  (0) 2021.12.31