|
|
|
|
|
by keeperofdakeys
778 days ago
|
|
Either put machinery in your schema migration tool to create indexes as a separate step, so they are easy to re-apply. This makes keeping indexes in sync between production and staging a lot easier. Or you can use "CREATE TABLE_B (LIKE TABLE_A WITH INDEXES);". |
|
Also make sure to set maintenance_work_mem high as it helps with index creation