Files
danbooru/db/migrate/20130712162600_add_custom_style_to_users.rb
2013-07-16 17:09:04 -07:00

7 lines
161 B
Ruby

class AddCustomStyleToUsers < ActiveRecord::Migration
def change
execute "set statement_timeout = 0"
add_column :users, :custom_style, :text
end
end