Skip to content

Commit

Permalink
Merge branch 'pull/5212'
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonKhorev committed Sep 17, 2024
2 parents e8029e2 + 28650d4 commit 8c071a4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions db/migrate/20240913171951_drop_user_creation_ip.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class DropUserCreationIp < ActiveRecord::Migration[7.1]
def change
safety_assured { remove_column :users, :creation_ip, :string }
end
end
2 changes: 1 addition & 1 deletion db/structure.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1482,7 +1482,6 @@ CREATE TABLE public.users (
pass_salt character varying,
email_valid boolean DEFAULT false NOT NULL,
new_email character varying,
creation_ip character varying,
languages character varying,
status public.user_status_enum DEFAULT 'pending'::public.user_status_enum NOT NULL,
terms_agreed timestamp without time zone,
Expand Down Expand Up @@ -3357,6 +3356,7 @@ INSERT INTO "schema_migrations" (version) VALUES
('23'),
('22'),
('21'),
('20240913171951'),
('20240912181413'),
('20240910175616'),
('20240822121603'),
Expand Down

0 comments on commit 8c071a4

Please sign in to comment.