github.com/voedger/voedger@v0.0.0-20240520144910-273e84102129/pkg/cluster/appws.vsql (about)

     1  -- Copyright (c) 2024-present unTill Software Development Group B.V.
     2  -- @author Denis Gribanov
     3  
     4  ALTER WORKSPACE AppWorkspaceWS (
     5  
     6  	TABLE App INHERITS WDoc (
     7  		AppQName varchar NOT NULL,
     8  		NumPartitions int32 NOT NULL,
     9  		NumAppWorkspaces int32 NOT NULL,
    10  		UNIQUE (AppQName)
    11  	);
    12  
    13  	TYPE AppDeploymentDescriptor (
    14  		AppQName varchar NOT NULL,
    15  		NumPartitions int32 NOT NULL,
    16  		NumAppWorkspaces int32 NOT NULL,
    17  		AppImage blob
    18  	);
    19  
    20  	EXTENSION ENGINE BUILTIN (
    21  		COMMAND DeployApp(AppDeploymentDescriptor);
    22  	);
    23  );