Using SQL Server 2008 R2
sequel 3.31.0

alter_table(:table_name) do
  set_column_type(:column_name, :bit, {:null => false})
end

Expected
ALTER TABLE [table_name] ALTER COLUMN [column_name] bit NOT NULL

but got this instead
ALTER TABLE [table_name] ALTER COLUMN [column_name] bit

Tried both options allow_null => false and null => false.

-- 
You received this message because you are subscribed to the Google Groups 
"sequel-talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/sequel-talk?hl=en.

Reply via email to