mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 02:50:00 +08:00
6 lines
121 B
Ruby
6 lines
121 B
Ruby
class AddDeletedAtToPosts < ActiveRecord::Migration
|
|
def change
|
|
add_column :posts, :deleted_at, :datetime
|
|
end
|
|
end
|