mirror of https://github.com/buster-so/buster.git
16 lines
443 B
SQL
16 lines
443 B
SQL
-- Migration: create_users
|
|
-- Created: 2024-06-03-034618
|
|
-- Original: 2024-06-03-034618_create_users
|
|
|
|
CREATE TABLE users (
|
|
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
|
email TEXT NOT NULL UNIQUE,
|
|
name TEXT,
|
|
config JSONB NOT NULL DEFAULT '{}',
|
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
|
);
|
|
|
|
-- Enable Row Level Security
|
|
ALTER TABLE
|
|
users ENABLE ROW LEVEL SECURITY; |