the sent column wasn't being populated, needed default
This commit is contained in:
parent
bfef918482
commit
f429c1aaa0
@ -100,4 +100,5 @@ insert into queue_item_new (frame,transport,created,claimed)
|
|||||||
alter table queue_item rename to queue_item_old;
|
alter table queue_item rename to queue_item_old;
|
||||||
alter table queue_item_new rename to queue_item;
|
alter table queue_item_new rename to queue_item;
|
||||||
|
|
||||||
|
ALTER TABLE confirm_address ALTER column sent set default CURRENT_TIMESTAMP;
|
||||||
|
|
||||||
|
@ -276,7 +276,7 @@ create table confirm_address (
|
|||||||
address_extra varchar(255) not null default '' /* comment 'carrier ID, for SMS' */,
|
address_extra varchar(255) not null default '' /* comment 'carrier ID, for SMS' */,
|
||||||
address_type varchar(8) not null /* comment 'address type ("email", "jabber", "sms")' */,
|
address_type varchar(8) not null /* comment 'address type ("email", "jabber", "sms")' */,
|
||||||
claimed timestamp /* comment 'date this was claimed for queueing' */,
|
claimed timestamp /* comment 'date this was claimed for queueing' */,
|
||||||
sent timestamp /* comment 'date this was sent for queueing' */,
|
sent timestamp default CURRENT_TIMESTAMP /* comment 'date this was sent for queueing' */,
|
||||||
modified timestamp /* comment 'date this record was modified' */
|
modified timestamp /* comment 'date this record was modified' */
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user