Files
danbooru/db/migrate/20150128005954_add_bit_flags_to_posts.rb

7 lines
194 B
Ruby

class AddBitFlagsToPosts < ActiveRecord::Migration[4.2]
def change
execute "set statement_timeout = 0"
add_column :posts, :bit_flags, "bigint", :null => false, :default => 0
end
end