I have written my migration file to change the column type as follows
class ChangeColumnTypeInMyTable < ActiveRecord::Migration
def self.up
execute <<-SQL
ALTER TABLE batches
ALTER COLUMN updated_by int
SQL
execute <<-SQL
ALTER TABLE batches
ALTER COLUMN created_by int
SQL
end
def self.down
end
end
but this gives me an error saying PG::SyntaxError: ERROR: syntax error at or near "int"
LINE 2: ALTER COLUMN updated_by int
I could not find the error . Thank you in advance