mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
Initial release of Discourse
This commit is contained in:
11
db/migrate/20130130154611_remove_index_from_views.rb
Normal file
11
db/migrate/20130130154611_remove_index_from_views.rb
Normal file
@@ -0,0 +1,11 @@
|
||||
class RemoveIndexFromViews < ActiveRecord::Migration
|
||||
def up
|
||||
remove_index "views", name: "unique_views"
|
||||
change_column :views, :viewed_at, :date
|
||||
end
|
||||
|
||||
def down
|
||||
add_index "views", ["parent_id", "parent_type", "ip", "viewed_at"], name: "unique_views", unique: true
|
||||
change_column :views, :viewed_at, :timestamp
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user