<1 file seen, 16 structures shown, 1 excluded (.git/)>
basic.sql (4-23)
- users @4 # Users table to store user information
   CREATE TABLE users (
       id INT PRIMARY KEY AUTO_INCREMENT,
       username VARCHAR(50) NOT NULL UNIQUE,
       email VARCHAR(100) NOT NULL,
       created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
  - id INT PRIMARY KEY AUTO_INCREMENT @5
  - username VARCHAR(50) NOT NULL UNIQUE @6
  - email VARCHAR(100) NOT NULL @7
  - created_at TIMESTAMP DEFAULT @8
- active_users SELECT id, username, email
FROM users
WHERE create... @20 # View for active users
[exit 0]
