Created
October 14, 2022 07:25
-
-
Save ridhoperdana/e37321c2d836519631a29f2f17e28f10 to your computer and use it in GitHub Desktop.
database migration test govtech
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
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