Hi Abraham,
When creating a new database using SSMS, are you making sure to specify the tier and options you want via the Configure SLO tab? Please see screenshot below:
Or if creating the database via SQL:
CREATE DATABASE [mydatabasename] (EDITION = 'Standard', SERVICE_OBJECTIVE = 'S2', MAXSIZE = 250 GB) WITH LEDGER = OFF;
Please click Accept Answer and upvote if the above was helpful.
Thanks.
-TP