mirror of
https://github.com/findyourmagic/dber.git
synced 2026-04-26 14:35:52 +03:00
[GH-ISSUE #44] parse failed #28
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @sqllyw on GitHub (Feb 23, 2025).
Original GitHub issue: https://github.com/findyourmagic/dber/issues/44
using the deber.tech to import a table, got error Parse failed, why?
Table users {
id int [primary key, increment] // Auto-incrementing user ID
username varchar(50) [unique, not null]
email varchar(100) [unique, not null]
password_hash varchar(255) [not null]
created_at timestamp [default: now]
}