alter_table(:pages) do
add_column :about, Text
end
when running the migration rake sq:migrate
I get
rake aborted!
NameError: uninitialized constant Text
How do i create a text data type. I did follow the docs but sequel doc has very less eg.
Update 1
I can use Text :about when creating a table in migration but the issue persist in altering table