You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
193 B

4 years ago
4 years ago
  1. -- Your SQL goes here
  2. CREATE TABLE users (
  3. id INTEGER PRIMARY KEY NOT NULL ,
  4. name VARCHAR NOT NULL,
  5. password VARCHAR NOT NULL,
  6. created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
  7. )