Announcement

Collapse
No announcement yet.

Table relationships ?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Table relationships ?

    I am manually adding data to a table with SQL codes (with my cron job for example INSERT INTO fields, values). History table. There are IDs associated with this table. But it looks like id listed. There are no names associated with them.
    How can I solve this? I'm adding relationship.

    Example;

    HTML Code:
    {
    "fields": {
         "prevCareerStep": {
         "type": "link",
         "readOnly": true
      }
    },
    "links": {
         "prevCareerStep": {
         "type": "belongsTo",
         "entity": "CareerSteps"
      }
    }
    }
    Last edited by gundogduyakici; 04-08-2018, 06:38 PM.

  • #2
    I figured it out. Thank you. Thread closed

    Comment

    Working...
    X