SQL

CREATE TABLE projects  (
  id VARCHAR(50) NOT NULL,
  name VARCHAR(255) NOT NULL,
  description TEXT,
  ontologies JSON,
  workspaces JSON,
  created_at JSON NOT NULL,
  updated_at JSON NOT NULL,
  tenant_id VARCHAR(50) NOT NULL,
  license_tier JSON,
  category JSON,
  tags JSON,
  owner VARCHAR(255),
  collaborators JSON,
  active_pipelines JSON,
  settings JSON,
  deleted BOOLEAN,
  PRIMARY KEY (id)
)

+ Add column

Columns

Column Data type Allow null Primary key Actions
id VARCHAR(50) Rename | Drop
name VARCHAR(255) Rename | Drop
description TEXT Rename | Drop
ontologies JSON Rename | Drop
workspaces JSON Rename | Drop
created_at JSON Rename | Drop
updated_at JSON Rename | Drop
tenant_id VARCHAR(50) Rename | Drop
license_tier JSON Rename | Drop
category JSON Rename | Drop
tags JSON Rename | Drop
owner VARCHAR(255) Rename | Drop
collaborators JSON Rename | Drop
active_pipelines JSON Rename | Drop
settings JSON Rename | Drop
deleted BOOLEAN Rename | Drop

+ Add index

Indexes

Name Columns Unique SQL Drop?
sqlite_autoindex_projects_1 id SQL
-- no sql found --
Drop