7 lines
189 B
Ruby
7 lines
189 B
Ruby
class AddBitFlagsToPosts < ActiveRecord::Migration
|
|
def change
|
|
execute "set statement_timeout = 0"
|
|
add_column :posts, :bit_flags, "bigint", :null => false, :default => 0
|
|
end
|
|
end
|