Use below script to change schema name of a table in SQL Server.

Generalized Syntax:

ALTER SCHEMA NewSchema TRANSFER CurrentSchema.TableName; 

For example, if you want to change your dbo.Customers table to Config.customers, then you can use below SQL command.

ALTER SCHEMA dbo TRANSFER Config.Customers;