mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 09:45:13 +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
|