Rails-migrering ger inget sätt att lägga till begränsningar, men du kan fortfarande göra det via migrering men genom att skicka faktisk SQL till execute()
Skapa migreringsfil:
ruby script/generate Migration AddConstraint
Nu, i migreringsfilen:
class AddConstraint < ActiveRecord::Migration
def self.up
execute "ALTER TABLE table_name ADD CONSTRAINT check_constraint_name CHECK (check_column_name IN (1, 2, 3) )"
end
def self.down
execute "ALTER TABLE table_name DROP CONSTRAINT check_constraint_name"
end
end