hasTable('talk_rooms')) { $table = $schema->getTable('talk_rooms'); if (!$table->hasColumn('lobby_state')) { $table->addColumn('lobby_state', Types::INTEGER, [ 'notnull' => true, 'length' => 6, 'default' => 0, ]); $table->addColumn('lobby_timer', Types::DATETIME, [ 'notnull' => false, ]); } } return $schema; } }