mirror of
https://github.com/internetee/registry.git
synced 2025-06-07 05:05:45 +02:00
Remove domains.status field
It is empty anyway
This commit is contained in:
parent
2d8b196b1e
commit
63837c40ba
2 changed files with 7 additions and 1 deletions
5
db/migrate/20181002090319_remove_domain_status_field.rb
Normal file
5
db/migrate/20181002090319_remove_domain_status_field.rb
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
class RemoveDomainStatusField < ActiveRecord::Migration
|
||||||
|
def change
|
||||||
|
remove_column :domains, :status
|
||||||
|
end
|
||||||
|
end
|
|
@ -885,7 +885,6 @@ CREATE TABLE public.domains (
|
||||||
name character varying,
|
name character varying,
|
||||||
registrar_id integer NOT NULL,
|
registrar_id integer NOT NULL,
|
||||||
registered_at timestamp without time zone,
|
registered_at timestamp without time zone,
|
||||||
status character varying,
|
|
||||||
valid_to timestamp without time zone NOT NULL,
|
valid_to timestamp without time zone NOT NULL,
|
||||||
registrant_id integer NOT NULL,
|
registrant_id integer NOT NULL,
|
||||||
transfer_code character varying NOT NULL,
|
transfer_code character varying NOT NULL,
|
||||||
|
@ -4778,3 +4777,5 @@ INSERT INTO schema_migrations (version) VALUES ('20180824092855');
|
||||||
|
|
||||||
INSERT INTO schema_migrations (version) VALUES ('20180824102834');
|
INSERT INTO schema_migrations (version) VALUES ('20180824102834');
|
||||||
|
|
||||||
|
INSERT INTO schema_migrations (version) VALUES ('20181002090319');
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue