My suggestion is to use Ola Hallengren scripts as shown below. Based on my own experience, updating statistics and defragmentation of indexes are very important for Azure SQL performance and to save money on Azure SQL.
EXECUTE dbo.IndexOptimize
@Databases = 'Alchavo30',
@FragmentationLow = NULL,
@FragmentationMedium = NULL,
@FragmentationHigh = NULL,
@UpdateStatistics = 'ALL',
@OnlyModifiedStatistics = 'Y'
GO