Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
-- WARNING: If you are modifying this file you MUST open a PR to the Cloud repository prior to merging any changes.
-- If you are not Zed staff you MUST coordinate with a staff member to apply the schema migrations before this PR is merged.

CREATE TABLE "users" (
"id" INTEGER PRIMARY KEY AUTOINCREMENT,
"github_login" VARCHAR,
Expand Down
6 changes: 5 additions & 1 deletion crates/collab/migrations/20251208000000_test_schema.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
-- This file is auto-generated. Do not modify it by hand.
-- To regenerate, run `cargo xtask db dump-schema app --collab` from the Cloud repository.
--
-- WARNING: If you are modifying this file you MUST open a PR to the Cloud repository prior to merging any changes.
-- If you are not Zed staff you MUST coordinate with a staff member to apply the schema migrations before this PR is merged.

CREATE EXTENSION IF NOT EXISTS pg_trgm WITH SCHEMA public;

Expand Down Expand Up @@ -224,7 +227,8 @@ CREATE TABLE public.language_servers (
id bigint NOT NULL,
name character varying NOT NULL,
capabilities text NOT NULL,
worktree_id bigint
worktree_id bigint,
language_name character varying
);

CREATE TABLE public.notification_kinds (
Expand Down
Loading