Skip to content

Commit

Permalink
Remove duplicate column in migrations. Fixes #393 Fixes #394
Browse files Browse the repository at this point in the history
  • Loading branch information
excid3 committed Jan 30, 2024
1 parent 32733a2 commit 11c1ce5
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
### Unreleased

### 2.1.1

* Fix duplicate column in migrations.

### 2.1.0

[!IMPORTANT] Run `rails noticed:install:migrations` to upgrade to this version
Expand Down
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:
noticed (2.1.0)
noticed (2.1.1)
rails (>= 6.1.0)

GEM
Expand Down
1 change: 0 additions & 1 deletion db/migrate/20231215190233_create_noticed_tables.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ def change
else
t.json :params
end
t.integer :notifications_count

t.timestamps
end
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_6_1.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
noticed (2.1.0)
noticed (2.1.1)
rails (>= 6.1.0)

GEM
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_7.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
noticed (2.1.0)
noticed (2.1.1)
rails (>= 6.1.0)

GEM
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_7_1.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
noticed (2.1.0)
noticed (2.1.1)
rails (>= 6.1.0)

GEM
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_main.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ GIT
PATH
remote: ..
specs:
noticed (2.1.0)
noticed (2.1.1)
rails (>= 6.1.0)

GEM
Expand Down
2 changes: 1 addition & 1 deletion lib/noticed/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Noticed
VERSION = "2.1.0"
VERSION = "2.1.1"
end

0 comments on commit 11c1ce5

Please sign in to comment.