2021-12-06 23:26:38 +08:00

14 lines
372 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- 初始化建表
-- 应用规则表
CREATE TABLE application_rule (
-- 创建时间
createdDate INTEGER NOT NULL,
-- 更新时间
updatedDate INTEGER NOT NULL,
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
name TEXT NOT NULL,
-- 注释
comment TEXT NOT NULL DEFAULT '',
-- 规则内容json序列化后保存
content TEXT NOT NULL DEFAULT ''
);