I have column 'created_at' in my table, now I want to add 'updated_at' with default value same as 'created_at'. Im using laravel migration.
        Schema::table($this->tableName(), function (Blueprint $table) {
            $table->timestamp('updated_at');
        });
 
    