Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Migrating built-in models to Databases

How to move built-in models like User, Roles, User-Role-Mapping etc... to the database we've created instead of the default datasource:db? The built-in models are not listing in Arc.

I've tried creating a new model which inherits these base model. But, data is not saved into the new model.

Please advice...I've been sitting on it for a couple of weeks. Thanks

like image 876
Anoop Thiruonam Avatar asked Apr 30 '15 18:04

Anoop Thiruonam


People also ask

What is data model migration?

Data migration allows you to convert data from one model (schema) to another, using mappings. The migration process itself is discussed in The Migration Process. How you perform a migration is discussed in Initiating the Migration Process.


1 Answers

Default "db" datasource is placed in memory. That is why your data are not persisted after you restart application. You have to install appropriate database connector and then you have to add datasource for your database inside server/datasources.js.

http://docs.strongloop.com/display/public/LB/Connecting+models+to+data+sources

If you created application with "slc loopback" command, then your datasource contains only memory connector. Check datasources.js file and you will see something like this:

{
  "db": {
  "name": "db",
  "connector": "memory"
  }
}

If you want to persist your data for example in postgresql database (process is almost same for any supported connector), you have to expand your datasoruces.json file with your database information:

{
  "db": {
  "name": "db",
  "connector": "memory"
  },

  "mydata": {
    "host": "db_host",
    "database": "your_database_name",
    "username": "your_db_username",
    "password": "your_db_password",
    "connector": "postgresql"
  }
}

You can also do this using "slc loopback:datasource" command. Wizard will help you to define your datasource. Don't forget to install db connector.

npm install loopback-connector-postgresql

Last thing to do is to assign your datasource to desired models. You can do this using wizard (see slc loopback:model command), or you can edit server/model-config.json file manually.

{
  "User": {
    "dataSource": "mydata",
    "public": true
  },
  "AccessToken": {
    "dataSource": "mydata",
    "public": false
  },
  "ACL": {
    "dataSource": "mydata",
    "public": false
  },
  "RoleMapping": {
    "dataSource": "mydata",
    "public": false
  },
  "Role": {
    "dataSource": "mydata",
    "public": false
  }
}

UPDATE You can try this code snippet to update your tables from models. Put his code somewhere in server/server.js

var appModels = ['User', 'AccessToken', 'ACL', 'RoleMapping', 'Role'];

var ds = app.dataSources.mydata;
ds.isActual(appModels, function(err, actual) {
  if (!actual) {
    ds.autoupdate(appModels, function(err) {
      if (err) throw (err);
    });
  }
});

I would recommend you to read about creating/updating database schema from models on strongloop page. Pay attention abut difference between autoupdate and automigrate functions

http://docs.strongloop.com/display/public/LB/Creating+a+database+schema+from+models

like image 193
A.Z. Avatar answered Nov 26 '22 13:11

A.Z.