
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
activerecord_reset_pk_sequence
Advanced tools
This gem allows resetting the id of an AR table to 0. It is useful after a delete_all command. It works in Postgres, Sqlite and MySQL up to now.
Add this line to your application's Gemfile:
gem 'activerecord_reset_pk_sequence'
And then execute:
$ bundle
Or install it yourself as:
$ gem install activerecord_reset_pk_sequence
This gem adds a method to the class ActiveRecord::Base. Now it is shown an example of how it works.
The first thing is to install the gem as it is explained before.
After that you need a model. If you don't have one you can create it directly with rails as shown.
rails g model Person name:string
Then you do a database migration with:
rake db:migrate
To test the gem you have to start a rails console:
rails c
And then write the following commands:
p = Person.create(:name => 'David')
p = Person.create(:name => 'James')
You will see that the have the id's 1 and 2, then delete all elements in the table
Person.delete_all
If you create a new person now you will notice that the id is going to be 3
p = Person.create(:name => 'Peter')
id = p.id
=> 3
And this is what this gem is for, to reset the id's after deleting the elements in a table, to check if it works delete all elements and then run reset_pk_sequence method, after that create a new "Person" and check if its id is 1.
Person.delete_all
Person.reset_pk_sequence
p = Person.create(:name => 'Jhon')
So to sum up to use this gem you only have to add the call to the new method after deleting all the elements in a table.
git checkout -b my-new-feature
)git commit -am 'Added some feature'
)git push origin my-new-feature
)FAQs
Unknown package
We found that activerecord_reset_pk_sequence demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.