We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cde1976 commit 65e2241Copy full SHA for 65e2241
db/migrations/20241105000000_add_options_to_route.rb
@@ -1,7 +1,9 @@
1
Sequel.migration do
2
up do
3
alter_table(:routes) do
4
- add_column :options, String, size: 255, default: nil
+ # rubocop:disable Migration/IncludeStringSize
5
+ add_column :options, String, text: true, default: nil
6
+ # rubocop:enable Migration/IncludeStringSize
7
end
8
9
down do
0 commit comments