Table properties

name

This property corresponds to the table name.

show

This property is used by:

  • The read service from the CRUD services
    • Indicates to MakerMike which column values will be returned when other table makes reference to another table and the column referencing the other table didn't specify a column, check Column types to know more about.
    • The service also includes the column name in the final response (when the response has status 200).
  • The delete confimration modal, the modal has the following message format:
    Permanently delete `<TABLE_NAME_SET_AS_SHOW>`with id `<ROW_ID>`
    

If the value of this property is not specified by the user, MakerMike automatically sets the value based on the first column name of the table.

columns

This property as the name indicates corresponds to the columns of the table, when creating a project they must be in a list format, each list member corresponds to a column configuration and must be in a dictioanry format, check Column types and Column properties to know more about.

Top