Skip to content

Instantly share code, notes, and snippets.

@samed-mirzayev
Created July 15, 2020 11:53
Show Gist options
  • Select an option

  • Save samed-mirzayev/0ea21e4223c98cf3248dda8c27da7f3c to your computer and use it in GitHub Desktop.

Select an option

Save samed-mirzayev/0ea21e4223c98cf3248dda8c27da7f3c to your computer and use it in GitHub Desktop.
create table people(
...> ID INTEGER PRIMARY KEY,
...> first_name VARCHAR,
...> last_name VARCHAR,
...> phone_number VARCHAR,
...> created_at NOT NULL DEFAULT CURRENT_TIMESTAMP,
...> updated_at NOT NULL DEFAULT CURRENT_TIMESTAMP);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment