我问是否可以迁移一个表而不影响数据库中的数据,因为每次刷新时,所有字段都会重置。
答案 0 :(得分:0)
运行void write_Lvalue(const std::string &text) {
//...
}
void write_Rvalue(const std::string &&text) {
//...
}
int main() {
write_Lvalue("writing the Lvalue");
write_Rvalue("writing the Rvalue");
}
时,它将运行尚未运行的所有迁移,并且除非删除列,否则不会删除现有数据。您还可以通过使用php artisan migrate
参数将路径添加到文件中来运行特定的单个迁移,例如--path
。