This commit is contained in:
albert
2013-03-17 23:13:47 -04:00
parent 5153c376f1
commit a52eb3ddc2
7 changed files with 19 additions and 5 deletions

View File

@@ -0,0 +1,6 @@
class AddEnablePostSeqNavigationToUsers < ActiveRecord::Migration
def change
execute "set statement_timeout = 0"
add_column :users, :enable_sequential_post_navigation, :boolean, :null => false, :default => true
end
end