table = $table; $this->onCreate = $onCreate; $this->comment = $comment; } /** * Retrieve table name. * * @return Table */ public function getTable() { return $this->table; } /** * @inheritdoc */ public function getElementType() { return self::TYPE; } /** * Get On Create statement. * * @return null|string */ public function getOnCreate() { return $this->onCreate; } /** * {@inheritdoc} */ public function getComment() { return $this->comment; } }