mirror of
https://github.com/discourse/discourse.git
synced 2026-08-06 02:19:55 +08:00
7 lines
158 B
Ruby
Vendored
7 lines
158 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
class AddLocaleToPost < ActiveRecord::Migration[7.2]
|
|
def change
|
|
add_column :posts, :locale, :string, limit: 20
|
|
end
|
|
end
|