mirror of https://github.com/buster-so/buster.git
15 lines
460 B
SQL
15 lines
460 B
SQL
-- Migration: create_organizations
|
|
-- Created: 2024-06-03-034617
|
|
-- Original: 2024-06-03-034617_create_organizations
|
|
|
|
CREATE TABLE organizations (
|
|
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
|
name TEXT NOT NULL UNIQUE,
|
|
domain TEXT,
|
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
|
updated_at timestamptz not null default now(),
|
|
deleted_at TIMESTAMPTZ
|
|
);
|
|
|
|
-- Enable Row Level Security
|
|
ALTER TABLE organizations ENABLE ROW LEVEL SECURITY; |