rlazoti wrote:manda o código da sua migration também.
Licuri wrote: rlazoti wrote:manda o código da sua migration também. class CreateContexts < ActiveRecord::Migration def self.up create_table :contexts do |t|t.column :name, :string end end def self.down drop_table :contexts end end
albiere wrote: Licuri wrote: rlazoti wrote:manda o código da sua migration também. class CreateContexts < ActiveRecord::Migration def self.up create_table :contexts do |t|t.column :name, :string end end def self.down drop_table :contexts end end Cara... teste assim create_table :contexts do |t| t.string :name end