mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 15:44:31 +03:00
9 lines
314 B
SQL
9 lines
314 B
SQL
ALTER TABLE users
|
|
ADD invite_code VARCHAR(64),
|
|
ADD invite_count INTEGER NOT NULL DEFAULT 0,
|
|
ADD inviter_id INTEGER REFERENCES users (id),
|
|
ADD first_connection BOOLEAN NOT NULL DEFAULT true,
|
|
ADD created_at TIMESTAMP NOT NULL DEFAULT NOW();
|
|
|
|
CREATE UNIQUE INDEX "index_invite_code_users" ON "users" ("invite_code");
|