PhilipSkinner / elemental-lowcode

Elemental lowcode development platform.
MIT License
113 stars 17 forks source link

Specify table name for object in data schemas #86

Open PhilipSkinner opened 4 years ago

PhilipSkinner commented 4 years ago

Allow the table name for a given object to be configurable within the data type definition.

This table name needs to be separate from the name of the data type:

{
  "name": "todoList",
  "tableName" : "todo_list",
  "keys": [
    {
      "type" : "unique",
      "paths" : "$.name"
    }
  ]
}