All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sql.migration.V20150512234700__AddOwnerReadReceivedAt.sql Maven / Gradle / Ivy

The newest version!
ALTER TABLE dialogs
  ADD COLUMN owner_last_received_at timestamp,
  ADD COLUMN owner_last_read_at timestamp;

UPDATE dialogs SET owner_last_received_at = last_received_at;
UPDATE dialogs SET owner_last_read_at = last_read_at;

ALTER TABLE dialogs
  ALTER COLUMN owner_last_received_at SET NOT NULL,
  ALTER COLUMN owner_last_read_at SET NOT NULL;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy