Skip to content
This repository was archived by the owner on Jul 22, 2025. It is now read-only.

Commit 48c476a

Browse files
committed
chore: correct the option name
1 parent cf832e9 commit 48c476a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

db/migrate/20241020010245_add_tool_name_to_ai_tools.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
class AddToolNameToAiTools < ActiveRecord::Migration[7.1]
44
def up
5-
add_column :ai_tools, :tool_name, :string, null: false, max_length: 100, default: "", if_not_exists: true
5+
add_column :ai_tools, :tool_name, :string, null: false, limit: 100, default: "", if_not_exists: true
66

77
# Migrate existing name to tool_name
88
execute <<~SQL

0 commit comments

Comments
 (0)