Skip to content

Instantly share code, notes, and snippets.

@nix1947
Created September 23, 2021 01:51
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 nix1947/56e66d1b9d9043e7366ec5f452f64baf to your computer and use it in GitHub Desktop.
Save nix1947/56e66d1b9d9043e7366ec5f452f64baf to your computer and use it in GitHub Desktop.
unique column with multiple column in mysql. (Useful for one to one relation)
-- One to one relation between user_order and shipping_address table.
create table user_order ADD UNIQUE index("id", "shipping_address_id");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment