Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

createusertable.sql 222 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
  1. CREATE TABLE users (
  2. id INT AUTO_INCREMENT PRIMARY KEY,
  3. username VARCHAR(50) NOT NULL,
  4. email VARCHAR(100) NOT NULL,
  5. password_hash VARCHAR(100) NOT NULL,
  6. created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
  7. );
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...