mirror of
https://github.com/Portabase/agent.git
synced 2026-09-10 18:16:55 +00:00
f37e4d2de9
* feat: add firebird * feat: add firebird tests * fix: tests and refactoring, add justfile instead of makefile
11 lines
422 B
SQL
11 lines
422 B
SQL
CREATE TABLE users (
|
|
id INTEGER GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY,
|
|
email VARCHAR(255) NOT NULL UNIQUE,
|
|
name VARCHAR(255),
|
|
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
|
|
);
|
|
|
|
INSERT INTO users (email, name) VALUES ('alice@example.com', 'Alice');
|
|
INSERT INTO users (email, name) VALUES ('bob@example.com', 'Bob');
|
|
|
|
COMMIT; |