mirror of
https://github.com/MarSeventh/CloudFlare-ImgBed.git
synced 2026-01-31 00:53:20 +08:00
116 lines
3.6 KiB
SQL
116 lines
3.6 KiB
SQL
-- CloudFlare ImgBed D1 Database Initialization Script
|
|
-- 这个脚本用于初始化D1数据库
|
|
|
|
-- 删除已存在的表(如果需要重新初始化)
|
|
-- 注意:在生产环境中使用时请谨慎
|
|
-- DROP TABLE IF EXISTS files;
|
|
-- DROP TABLE IF EXISTS settings;
|
|
-- DROP TABLE IF EXISTS index_operations;
|
|
-- DROP TABLE IF EXISTS index_metadata;
|
|
-- DROP TABLE IF EXISTS other_data;
|
|
|
|
-- 执行主要的数据库架构创建
|
|
|
|
CREATE TABLE IF NOT EXISTS files (
|
|
id TEXT PRIMARY KEY,
|
|
value TEXT,
|
|
metadata TEXT NOT NULL,
|
|
file_name TEXT,
|
|
file_type TEXT,
|
|
file_size TEXT,
|
|
upload_ip TEXT,
|
|
upload_address TEXT,
|
|
list_type TEXT,
|
|
timestamp INTEGER,
|
|
label TEXT,
|
|
directory TEXT,
|
|
channel TEXT,
|
|
channel_name TEXT,
|
|
tg_file_id TEXT,
|
|
tg_chat_id TEXT,
|
|
tg_bot_token TEXT,
|
|
is_chunked BOOLEAN DEFAULT FALSE,
|
|
tags TEXT,
|
|
created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
|
|
updated_at DATETIME DEFAULT CURRENT_TIMESTAMP
|
|
);
|
|
|
|
CREATE TABLE IF NOT EXISTS settings (
|
|
key TEXT PRIMARY KEY,
|
|
value TEXT NOT NULL,
|
|
category TEXT,
|
|
description TEXT,
|
|
created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
|
|
updated_at DATETIME DEFAULT CURRENT_TIMESTAMP
|
|
);
|
|
|
|
CREATE TABLE IF NOT EXISTS index_operations (
|
|
id TEXT PRIMARY KEY,
|
|
type TEXT NOT NULL,
|
|
timestamp INTEGER NOT NULL,
|
|
data TEXT NOT NULL,
|
|
processed BOOLEAN DEFAULT FALSE,
|
|
created_at DATETIME DEFAULT CURRENT_TIMESTAMP
|
|
);
|
|
|
|
CREATE TABLE IF NOT EXISTS index_metadata (
|
|
key TEXT PRIMARY KEY,
|
|
last_updated INTEGER,
|
|
total_count INTEGER DEFAULT 0,
|
|
last_operation_id TEXT,
|
|
chunk_count INTEGER DEFAULT 0,
|
|
chunk_size INTEGER DEFAULT 0,
|
|
created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
|
|
updated_at DATETIME DEFAULT CURRENT_TIMESTAMP
|
|
);
|
|
|
|
CREATE TABLE IF NOT EXISTS other_data (
|
|
key TEXT PRIMARY KEY,
|
|
value TEXT NOT NULL,
|
|
type TEXT,
|
|
description TEXT,
|
|
created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
|
|
updated_at DATETIME DEFAULT CURRENT_TIMESTAMP
|
|
);
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_files_timestamp ON files(timestamp DESC);
|
|
CREATE INDEX IF NOT EXISTS idx_files_directory ON files(directory);
|
|
CREATE INDEX IF NOT EXISTS idx_files_channel ON files(channel);
|
|
CREATE INDEX IF NOT EXISTS idx_files_file_type ON files(file_type);
|
|
CREATE INDEX IF NOT EXISTS idx_files_upload_ip ON files(upload_ip);
|
|
CREATE INDEX IF NOT EXISTS idx_files_created_at ON files(created_at DESC);
|
|
CREATE INDEX IF NOT EXISTS idx_files_tags ON files(tags);
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_settings_category ON settings(category);
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_index_operations_timestamp ON index_operations(timestamp);
|
|
CREATE INDEX IF NOT EXISTS idx_index_operations_processed ON index_operations(processed);
|
|
CREATE INDEX IF NOT EXISTS idx_index_operations_type ON index_operations(type);
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_other_data_type ON other_data(type);
|
|
|
|
CREATE TRIGGER IF NOT EXISTS update_files_updated_at
|
|
AFTER UPDATE ON files
|
|
BEGIN
|
|
UPDATE files SET updated_at = CURRENT_TIMESTAMP WHERE id = NEW.id;
|
|
END;
|
|
|
|
CREATE TRIGGER IF NOT EXISTS update_settings_updated_at
|
|
AFTER UPDATE ON settings
|
|
BEGIN
|
|
UPDATE settings SET updated_at = CURRENT_TIMESTAMP WHERE key = NEW.key;
|
|
END;
|
|
|
|
CREATE TRIGGER IF NOT EXISTS update_index_metadata_updated_at
|
|
AFTER UPDATE ON index_metadata
|
|
BEGIN
|
|
UPDATE index_metadata SET updated_at = CURRENT_TIMESTAMP WHERE key = NEW.key;
|
|
END;
|
|
|
|
CREATE TRIGGER IF NOT EXISTS update_other_data_updated_at
|
|
AFTER UPDATE ON other_data
|
|
BEGIN
|
|
UPDATE other_data SET updated_at = CURRENT_TIMESTAMP WHERE key = NEW.key;
|
|
END;
|
|
|