add support use string FK with integer PK

This commit is contained in:
Andrey Kumanyaev 2012-10-10 03:31:51 +04:00
parent 3e1d52f4b7
commit 4eb7d82ae7

View file

@ -0,0 +1,15 @@
class PostgresCreateIntegerCast < ActiveRecord::Migration
def up
execute <<-SQL
CREATE CAST (integer AS text) WITH INOUT AS IMPLICIT;
SQL
rescue ActiveRecord::StatementInvalid
end
def down
execute <<-SQL
DROP CAST (integer AS text);
SQL
rescue ActiveRecord::StatementInvalid
end
end