mirror of
https://github.com/internetee/registry.git
synced 2025-06-08 05:34:46 +02:00
Merge branch 'master' into registry-800
# Conflicts: # db/structure.sql
This commit is contained in:
commit
22e1d09dfa
11 changed files with 10 additions and 20 deletions
5
db/migrate/20180327151906_remove_domains_valid_from.rb
Normal file
5
db/migrate/20180327151906_remove_domains_valid_from.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class RemoveDomainsValidFrom < ActiveRecord::Migration
|
||||
def change
|
||||
remove_column :domains, :valid_from, :datetime
|
||||
end
|
||||
end
|
|
@ -872,7 +872,6 @@ CREATE TABLE domains (
|
|||
registrar_id integer NOT NULL,
|
||||
registered_at timestamp without time zone,
|
||||
status character varying,
|
||||
valid_from timestamp without time zone,
|
||||
valid_to timestamp without time zone NOT NULL,
|
||||
registrant_id integer NOT NULL,
|
||||
transfer_code character varying NOT NULL,
|
||||
|
@ -4713,5 +4712,7 @@ INSERT INTO schema_migrations (version) VALUES ('20180313124751');
|
|||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20180314122722');
|
||||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20180327151906');
|
||||
|
||||
INSERT INTO schema_migrations (version) VALUES ('20180331200125');
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue