-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Labels
Description
We would like to use midblock_id column name instead of centreline_id for the centreline2_midblocks table which is being replicated from MOVE.
- we could consider renaming other traffic schema columns such as
centreline_id(which is actuallyintersection_idin some cases)
Options:
- Use simple views for inserting
- insert into a view first, then use trigger to insert into table. Would allow changing column names.
truncatewould not work, butdelete fromwould be an easy fixcomment on tablewould not work... could add a separate option for commenting on a second table.
- Revoke select on tables and rename columns using new views
- could be confusing since views are not the first place people would look
comment on tablewould mean comments on views would not be up to date... could add a separate option for commenting on a second table.