📄 sqlchanges20010317.sql
字号:
-- by: pfalcon-- purpose: table to store pending mass mailingsCREATE TABLE massmail_queue (
id serial primary key,
type varchar(8) not null,
subject text not null,
message text not null,
queued_date int not null,
last_userid int not null default 0,
failed_date int not null default 0,
finished_date int not null default 0
);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -