Squashed 'module/db/' content from commit 5280edf

git-subtree-dir: module/db
git-subtree-split: 5280edf192
This commit is contained in:
assembly-bot
2026-08-15 23:42:35 +08:00
commit 95fa29994d
4 changed files with 8 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
# E2E Multi-Agent Test
Full lifecycle test.
+3
View File
@@ -0,0 +1,3 @@
import sqlite3
def migrate(path): conn = sqlite3.connect(path); conn.close()
if __name__ == '__main__': migrate('app.db')
+1
View File
@@ -0,0 +1 @@
CREATE TABLE users (id INTEGER PRIMARY KEY AUTOINCREMENT, username TEXT UNIQUE NOT NULL, email TEXT UNIQUE NOT NULL, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP);
+1
View File
@@ -0,0 +1 @@
INSERT INTO users (username, email) VALUES ('admin', 'admin@test.com');