class UpdateSessions extends Migration {
public function up()
{
Schema::table('sessions', function($table){
$table->string('comCode')->nullable()->change();
});
}
public function down()
{
// What should i write here?
}
}
我已经创建了一个会话表来编写迁移以将列更改为可为空。现在我很困惑我应该写什么?