mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 06:23:38 +08:00
10 lines
170 B
Ruby
10 lines
170 B
Ruby
|
class RenameViewsToReads < ActiveRecord::Migration
|
||
|
def up
|
||
|
rename_column :posts, :views, :reads
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
rename_column :posts, :reads, :views
|
||
|
end
|
||
|
end
|