mirror of
https://github.com/internetee/registry.git
synced 2025-07-25 12:08:27 +02:00
parent
ed6f067a8d
commit
615eb0557c
2 changed files with 8 additions and 1 deletions
|
@ -0,0 +1,5 @@
|
||||||
|
class RenameDomainsStatusesBackupToStatusesBeforeForceDelete < ActiveRecord::Migration
|
||||||
|
def change
|
||||||
|
rename_column :domains, :statuses_backup, :statuses_before_force_delete
|
||||||
|
end
|
||||||
|
end
|
|
@ -895,7 +895,7 @@ CREATE TABLE domains (
|
||||||
statuses character varying[],
|
statuses character varying[],
|
||||||
reserved boolean DEFAULT false,
|
reserved boolean DEFAULT false,
|
||||||
status_notes hstore,
|
status_notes hstore,
|
||||||
statuses_backup character varying[] DEFAULT '{}'::character varying[],
|
statuses_before_force_delete character varying[] DEFAULT '{}'::character varying[],
|
||||||
upid integer,
|
upid integer,
|
||||||
up_date timestamp without time zone
|
up_date timestamp without time zone
|
||||||
);
|
);
|
||||||
|
@ -4716,3 +4716,5 @@ INSERT INTO schema_migrations (version) VALUES ('20180327151906');
|
||||||
|
|
||||||
INSERT INTO schema_migrations (version) VALUES ('20180331200125');
|
INSERT INTO schema_migrations (version) VALUES ('20180331200125');
|
||||||
|
|
||||||
|
INSERT INTO schema_migrations (version) VALUES ('20180422154642');
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue