errors in readme
This commit is contained in:
parent
800d8e6d24
commit
e1d43876fe
1 changed files with 2 additions and 2 deletions
|
@ -104,9 +104,9 @@ How to do this is described [in my blog][blog].
|
||||||
* create a view with new and old timestamps and user ids with
|
* create a view with new and old timestamps and user ids with
|
||||||
`create or replace view "user_new" as select "user".id, "user".timestamp, date 'epoch' + "user".timestamp * interval '1 second' as timestamp_new from "user";
|
`create or replace view "user_new" as select "user".id, "user".timestamp, date 'epoch' + "user".timestamp * interval '1 second' as timestamp_new from "user";
|
||||||
* create temporary timestamp column in user table with
|
* create temporary timestamp column in user table with
|
||||||
`alter table "user" create column "timestamp_temp";`
|
`alter table "user" add column "timestamp_temp" date;`
|
||||||
* fill temporary timestamp column with new timestamps with
|
* fill temporary timestamp column with new timestamps with
|
||||||
`update "user" set timestamp_temp = (select timestamp_new from from user_new where user_new.id = "user".id)`
|
`update "user" set timestamp_temp = (select timestamp_new from user_new where user_new.id = "user".id);`
|
||||||
* check if new timestamps look sane
|
* check if new timestamps look sane
|
||||||
* drop old timestamp column
|
* drop old timestamp column
|
||||||
`alter table "user" drop column timestamp cascade;`
|
`alter table "user" drop column timestamp cascade;`
|
||||||
|
|
Loading…
Reference in a new issue