Skip to content

Instantly share code, notes, and snippets.

@ridhoperdana
Created October 14, 2022 07:25
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 ridhoperdana/e37321c2d836519631a29f2f17e28f10 to your computer and use it in GitHub Desktop.
Save ridhoperdana/e37321c2d836519631a29f2f17e28f10 to your computer and use it in GitHub Desktop.
database migration test govtech
create table MOCK_DATA (
id SERIAL,
name VARCHAR(100),
created_at timestampz,
ts tsvector generated always as (to_tsvector('english'::regconfig, name)) stored
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment