14 lines
398 B
Dart
14 lines
398 B
Dart
const String createItemCategoryTable = '''
|
|
CREATE TABLE item_category (
|
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
name TEXT NOT NULL,
|
|
description TEXT,
|
|
created_at TEXT DEFAULT (datetime('now')),
|
|
updated_at TEXT DEFAULT (datetime('now'))
|
|
);
|
|
''';
|
|
|
|
const String insertDefaultCategory = '''
|
|
INSERT INTO item_category (id, name, description) VALUES (0, '默认分类', '系统默认分类');
|
|
''';
|