Skip to content

Instantly share code, notes, and snippets.

@beargiles
Created October 25, 2021 23:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save beargiles/0d315e93f895665fb83d82c8cd787f28 to your computer and use it in GitHub Desktop.
Save beargiles/0d315e93f895665fb83d82c8cd787f28 to your computer and use it in GitHub Desktop.
PostgreSQL table with check constraint
CREATE TABLE color (
color TEXT CHECK (color IN ('RED', 'GREEN', 'BLUE'))
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment