{
"name": "Client",
"plural": "Clients",
"base": "User",
"idInjection": true,
"properties": {},
"validations": [],
"relations": {},
"acls": [],
"methods": []
}StrongLoop Arc enables you to perform auto-migration without coding.
Click the Migrate Model button to create a database table for each model in your application, with a column for each model property. This is called LoopBack auto-migration.
To learn about available fields inherited from built-in user model, visit here [ https://apidocs.strongloop.com/loopback/#user ]
Important notes on using Auto-Migrate
Auto-migrate: Automatically create or re-create the table schemas based on the model definitions.
Auto-migration will drop an existing table if its name matches a model name. When tables with data exist, use auto-update to avoid data loss.
To use Migrate Model button
1- Open model in SL Composer
2- Choose new Datasource (e.g moving to MongoDB to MySQL)
3- Click 'Save Model' (IMPORTANT) then click 'Migrate Model'
Hope that helps!