Excluded table with no name error

A table in the excluded tables list is missing a name property.

How to fix

Add the missing name property to the excluded table entry.

Common issues

Missing name:

{
  "excludedTables": [
    {
      "schema": "dbo"
      // Missing "name" property
    }
  ]
}

Fixed:

{
  "excludedTables": [
    {
      "schema": "dbo",
      "name": "TableName"
    }
  ]

Didn't find what you were looking for?