Sha256: 72c8e5c776927d9e3187c87e544cd25050c5cf76f1a18866360fa058b300980b
Contents?: true
Size: 371 Bytes
Versions: 35
Compression:
Stored size: 371 Bytes
Contents
class MakeUserPersistenceTokenNullable < ActiveRecord::Migration def self.up change_table "users" do |t| t.change :persistence_token , :string , :null => true # optional end end def self.down change_table "users" do |t| t.change :persistence_token , :string , :null => false # optional end end end
Version data entries
35 entries across 35 versions & 1 rubygems