mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 12:08:01 +00:00
6 lines
136 B
Ruby
6 lines
136 B
Ruby
class AddMetaColumnToArticle < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :articles, :meta, :jsonb, default: {}
|
|
end
|
|
end
|