columns = $columns; } /** * @return ColumnEntity[] */ public function getColumns() { return $this->columns; } /** * @param string */ public function setComment($comment) { $this->comment = $comment; } /** * @return string */ public function getComment() { return $this->comment; } /** * @param ConstraintEntity[] */ public function setConstraints($constraints) { $this->constraints = $constraints; } /** * @return ConstraintEntity[] */ public function getConstraints() { return $this->constraints; } /** * @param array[] */ public function setCustomFeatures($customFeatures) { $this->customFeatures = $customFeatures; } /** * @return array[] */ public function getCustomFeatures() { return $this->customFeatures; } /** * @param IndexEntity[] */ public function setIndices($indices) { $this->indices = $indices; } /** * @return IndexEntity[] */ public function getIndices() { return $this->indices; } /** * @param TriggerEntity[] */ public function setTriggers($triggers) { $this->triggers = $triggers; } /** * @return TriggerEntity[] */ public function getTriggers() { return $this->triggers; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(TableEntity::class, 'Google_Service_DatabaseMigrationService_TableEntity');