Studio 2.3.2 adds new entry

I am using the new studio version for the first time and it has added a section to the jmix-studio.xml file and I wonder if it is correct and needed? Should I keep the new entry? Does it need editing?

It added this:

      <entry key="membership.main">
        <ModuleSettings>
          <option name="dataStoreOptionsV2">
            <map>
              <entry key="main">
                <value>
                  <DataStoreSettingsV2 />
                </value>
              </entry>
            </map>
          </option>
        </ModuleSettings>
      </entry>

But the file already had this one, which has more detail:

      <entry key="org.organization.membership.main">
        <ModuleSettings>
          <option name="dataStoreOptionsV2">
            <map>
              <entry key="main">
                <value>
                  <DataStoreSettingsV2>
                    <option name="generateDdlType" value="CREATE_AND_UPDATE" />
                    <option name="nameLengthMode" value="ORACLE" />
                    <option name="supportedTypes">
                      <option value="mysql" />
                    </option>
                  </DataStoreSettingsV2>
                </value>
              </entry>
            </map>
          </option>
        </ModuleSettings>
      </entry>

Hi

As you can see, this two entries differ with module names at the top. Studio gets this names from IDE modules. So it seems that your project module was imported with different name for some reason.
Please check that your main data store settings in Studio (generateDdlType, nameLengthMode, supportedTypes) correspond to the values we see for “org.organization.membership.main” entry. If so, you can safely remove the new one.