createAlias method
Creates an alias of this table or view that will write the name alias
when used in a query.
Implementation
@override
VersionedVirtualTable createAlias(String alias) {
return VersionedVirtualTable.aliased(source: this, alias: alias);
}