
With the release of business central wave 2 No Developer environment ,so question comes how to upload customer/developer license in database.
Powershell command comes to rescue in this environment. Following few commands will help you to upload the license.
Step 1 :- Open windows PowerShell ISE as Administrator
Step 2:- Import Module for Business Central Wave 2 .Use following command
Import-Module 'C:\Program Files\Microsoft Dynamics 365 Business Central\150\Service\NavAdminTool.ps1'
Step 3 :- Add following command to import the license
Import-NAVServerLicense -LicenseFile 'C:\Cronus.flf' -ServerInstance BC150
Step 4 :- Restart Service
Restart-NAVServerInstance -ServerInstance BC150
Step 5 :- See the information of License
Export-NAVServerLicenseInformation -ServerInstance BC150

Hope this will help you. Explore more..
*** Change path of license file and Service name according to your configuration