Skip to content

Instantly share code, notes, and snippets.

@digimon1740
Created September 5, 2019 05:20
Show Gist options
  • Select an option

  • Save digimon1740/8ecf03a9a5af98167367b758a7a8a07f to your computer and use it in GitHub Desktop.

Select an option

Save digimon1740/8ecf03a9a5af98167367b758a7a8a07f to your computer and use it in GitHub Desktop.
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