Remove PaperTrail columns from prices DB table

PaperTrail's `Version` model itself has been removed in #475, so those
columns are now useless
This commit is contained in:
Artur Beljajev 2018-09-16 16:53:02 +03:00 committed by Alex Sherman
parent 66288fe160
commit e03ae63acf
2 changed files with 8 additions and 2 deletions

View file

@ -2092,8 +2092,6 @@ CREATE TABLE public.prices (
price_cents integer NOT NULL,
valid_from timestamp without time zone,
valid_to timestamp without time zone,
creator_str character varying,
updator_str character varying,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
duration interval,
@ -4854,3 +4852,5 @@ INSERT INTO "schema_migrations" (version) VALUES
('20200910085157');
INSERT INTO schema_migrations (version) VALUES ('20180916133911');