sqlchanges20010317.sql
来自「GForge 3.0 协作开发平台 支持CVS, mailing lists, 」· SQL 代码 · 共 14 行
SQL
14 行
-- 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 + =
减小字号Ctrl + -
显示快捷键?