RustRover cargo-generate template: Axum + Vue 3 + TypeScript + Tailwind + sqlx
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
355 B

  1. CREATE EXTENSION IF NOT EXISTS pgcrypto;
  2. CREATE TABLE IF NOT EXISTS items (
  3. id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
  4. name TEXT NOT NULL,
  5. description TEXT,
  6. created_at TIMESTAMPTZ NOT NULL DEFAULT now(),
  7. updated_at TIMESTAMPTZ NOT NULL DEFAULT now()
  8. );
  9. CREATE INDEX IF NOT EXISTS items_created_at_idx ON items (created_at DESC);