github.com/kyma-project/kyma-environment-broker@v0.0.1/migrations/202008241000_add_orchestrations.up.sql (about)

     1  CREATE TABLE IF NOT EXISTS orchestrations (
     2      orchestration_id varchar(255) PRIMARY KEY,
     3      created_at TIMESTAMPTZ NOT NULL,
     4  	updated_at TIMESTAMPTZ NOT NULL,
     5  	state varchar(32) NOT NULL,
     6  	parameters text NOT NULL,
     7  	description text,
     8  	runtime_operations text
     9  );