This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- MoltCourt Database Schema | |
| -- Migration: 001_initial_schema | |
| -- Enable UUID extension | |
| CREATE EXTENSION IF NOT EXISTS "uuid-ossp"; | |
| -- Enum types | |
| CREATE TYPE case_status AS ENUM ( | |
| 'filed', | |
| 'response', |