mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 04:08:06 +01:00
6 lines
132 B
Ruby
6 lines
132 B
Ruby
|
class AddDeletedAtToStatuses < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
add_column :statuses, :deleted_at, :datetime
|
||
|
end
|
||
|
end
|