Skip to content

Commit

Permalink
Merge pull request #12 from ryosk7/0.1.4
Browse files Browse the repository at this point in the history
fix: Add timestamp column in scannings table (rubocop error)
  • Loading branch information
ryosk7 authored Oct 27, 2023
2 parents 7c232ab + 67aa1c0 commit 0af7ec1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
snapcher (0.1.3)
snapcher (0.1.4)

GEM
remote: https://rubygems.org/
Expand Down
1 change: 1 addition & 0 deletions lib/generators/snapcher/templates/install.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ def self.up
t.column :after_params, :string
t.column :action, :string
t.column :created_at, :datetime
t.timestamps null: false
end
end

Expand Down
2 changes: 1 addition & 1 deletion lib/snapcher/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Snapcher
VERSION = "0.1.3"
VERSION = "0.1.4"
end

0 comments on commit 0af7ec1

Please sign in to comment.