This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 创建topicList表(主表) | |
CREATE TABLE topicList ( | |
oralTopicId TEXT PRIMARY KEY, | |
oralTopicName TEXT NOT NULL, | |
part INTEGER NOT NULL, | |
questionCount INTEGER DEFAULT 0, | |
oralQuestion TEXT, | |
timeTag TEXT, | |
oralTopCategoryName TEXT, | |
createdAt TIMESTAMP DEFAULT CURRENT_TIMESTAMP, |