Hi Everyone,
I have a field in my db table which is a date rather than string, how do I make a migration to convert it to a string?
class CreateKases < ActiveRecord::Migration
def self.up
create_table :kases do |t|
t.date :dateclosed
Is it even possible?
Thanks,
Danny