BrainMinder/assets/migrations/000009_create_bm_item_notebook_table.up.sql

7 lines
190 B
MySQL
Raw Normal View History

2024-08-22 10:13:16 +02:00
CREATE TABLE "bm_notebook" (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
"title" TEXT DEFAULT '',
"hidden" INTEGER DEFAULT 0,
"icon" TEXT DEFAULT '',
"description" TEXT DEFAULT ''
);