mirror of
https://github.com/moebooru/moebooru
synced 2025-08-22 01:47:48 +00:00
6 lines
127 B
Ruby
6 lines
127 B
Ruby
class AddUpdatedAtToPosts < ActiveRecord::Migration[5.1]
|
|
def change
|
|
add_column :posts, :updated_at, :timestamp
|
|
end
|
|
end
|