You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
ALTER TABLE "mailbox"."mail_mark" |
|
DROP COLUMN "mail_time", |
|
ADD COLUMN "mail_time" date; |
|
|
|
COMMENT ON COLUMN "mailbox"."mail_mark"."mail_time" IS '来信时间'; |
|
|
|
update mail_mark mm set mm.mail_time = m.mail_time from mail m where mm.mail_id = m.id; |