mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 18:15:55 +08:00
6 lines
147 B
Ruby
6 lines
147 B
Ruby
|
class AddViaEmailToPosts < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :posts, :via_email, :boolean, default: false, null: false
|
||
|
end
|
||
|
end
|