mirror of
https://github.com/internetee/registry.git
synced 2025-07-22 02:35:57 +02:00
Disputes: Show when and who closed dispute
This commit is contained in:
parent
26a5813fe9
commit
c682155bf6
9 changed files with 48 additions and 31 deletions
|
@ -0,0 +1,19 @@
|
|||
class AddClosedDateTimeAndUpdatorToDispute < ActiveRecord::Migration[5.2]
|
||||
def up
|
||||
rename_column :disputes, :closed, :closed_boolean
|
||||
add_column :disputes, :closed, :datetime
|
||||
execute 'UPDATE disputes SET closed = updated_at WHERE closed_boolean = true'
|
||||
execute 'UPDATE disputes SET closed = NULL WHERE closed_boolean = false'
|
||||
remove_column :disputes, :closed_boolean
|
||||
add_column :disputes, :initiator, :string
|
||||
end
|
||||
|
||||
def down
|
||||
rename_column :disputes, :closed, :closed_datetime
|
||||
add_column :disputes, :closed, :boolean, null: false, default: false
|
||||
execute 'UPDATE disputes SET closed = true WHERE closed_datetime != NULL'
|
||||
execute 'UPDATE disputes SET closed = false WHERE closed_datetime = NULL'
|
||||
remove_column :disputes, :closed_datetime
|
||||
remove_column :disputes, :initiator
|
||||
end
|
||||
end
|
|
@ -1,6 +1,6 @@
|
|||
--
|
||||
-- PostgreSQL database dump
|
||||
--
|
||||
---
|
||||
--- PostgreSQL database dump
|
||||
---
|
||||
|
||||
SET statement_timeout = 0;
|
||||
SET lock_timeout = 0;
|
||||
|
@ -605,9 +605,10 @@ CREATE TABLE public.disputes (
|
|||
expires_at date NOT NULL,
|
||||
starts_at date NOT NULL,
|
||||
comment text,
|
||||
closed boolean DEFAULT false NOT NULL,
|
||||
created_at timestamp without time zone NOT NULL,
|
||||
updated_at timestamp without time zone NOT NULL
|
||||
updated_at timestamp without time zone NOT NULL,
|
||||
closed timestamp without time zone,
|
||||
initiator character varying
|
||||
);
|
||||
|
||||
|
||||
|
@ -4520,5 +4521,7 @@ INSERT INTO "schema_migrations" (version) VALUES
|
|||
('20200417075720'),
|
||||
('20200421093637'),
|
||||
('20200505103316'),
|
||||
('20200505150413');
|
||||
('20200505150413'),
|
||||
('20200518104105');
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue