0

I'm using loop-back in my project I'm having predefined data sources and I want to know how to convert these data sources into database tables using loop-back command line.

AlvaroAV
  • 10,335
  • 12
  • 60
  • 91
Sparsh Pipley
  • 451
  • 8
  • 22

1 Answers1

0

You have to use migrations to create database schema from your datasource or vice versa. There is a post about migrations here.

CLI is used to auto-generate (scaffold) code and manage your application. You can find command-line reference here. There is no command to do migration from CLI.

Community
  • 1
  • 1
A.Z.
  • 1,638
  • 2
  • 18
  • 27