blob: 3470998770b72d3b8599eb1685230702621d9400 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
begin;
drop table debugdate;
ALTER TABLE problem ALTER COLUMN created SET DEFAULT current_timestamp;
ALTER TABLE problem ALTER COLUMN lastupdate SET DEFAULT current_timestamp;
ALTER TABLE comment ALTER COLUMN created SET DEFAULT current_timestamp;
ALTER TABLE token ALTER COLUMN created SET DEFAULT current_timestamp;
ALTER TABLE alert ALTER COLUMN whensubscribed SET DEFAULT current_timestamp;
ALTER TABLE alert_sent ALTER COLUMN whenqueued SET DEFAULT current_timestamp;
ALTER TABLE admin_log ALTER COLUMN whenedited SET DEFAULT current_timestamp;
ALTER TABLE moderation_original_data ALTER COLUMN created SET DEFAULT current_timestamp;
drop function ms_current_timestamp();
commit;
|