6 lines
144 B
Ruby
6 lines
144 B
Ruby
class AddTelegramSubscriberIdsToBot < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :bots, :telegram_subscriber_ids, :text
|
|
end
|
|
end
|