mirror of
https://github.com/internetee/registry.git
synced 2025-07-27 21:16:12 +02:00
Added committed param to white ip
This commit is contained in:
parent
e00e44c9b8
commit
1c8a46bd89
12 changed files with 130 additions and 15 deletions
5
db/migrate/20230707084741_add_committed_to_white_ips.rb
Normal file
5
db/migrate/20230707084741_add_committed_to_white_ips.rb
Normal file
|
@ -0,0 +1,5 @@
|
|||
class AddCommittedToWhiteIps < ActiveRecord::Migration[6.1]
|
||||
def change
|
||||
add_column :white_ips, :committed, :boolean, default: true
|
||||
end
|
||||
end
|
|
@ -2806,7 +2806,8 @@ CREATE TABLE public.white_ips (
|
|||
created_at timestamp without time zone,
|
||||
updated_at timestamp without time zone,
|
||||
creator_str character varying,
|
||||
updator_str character varying
|
||||
updator_str character varying,
|
||||
committed boolean DEFAULT true
|
||||
);
|
||||
|
||||
|
||||
|
@ -5468,6 +5469,7 @@ INSERT INTO "schema_migrations" (version) VALUES
|
|||
('20221207102831'),
|
||||
('20221214073933'),
|
||||
('20221214074252'),
|
||||
('20230531111154');
|
||||
('20230531111154'),
|
||||
('20230707084741');
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue