Created
September 5, 2019 05:20
-
-
Save digimon1740/8ecf03a9a5af98167367b758a7a8a07f to your computer and use it in GitHub Desktop.
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
| drop table if exists todos; | |
| create table todos ( | |
| id bigint generated by default as identity, | |
| content varchar(2000), | |
| created_at timestamp, | |
| done boolean, | |
| modified_at timestamp, | |
| primary key (id) | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment