Sha256: 065873fc120257fb14cb5aea0eb6ea4c3d40663b46613f360668f5264bba8b69
Contents?: true
Size: 542 Bytes
Versions: 6
Compression:
Stored size: 542 Bytes
Contents
class PopulateClipDefaults < ActiveRecord::Migration def up change_table :clipster_clips do |t| t.change_default :hash, '' t.change_default :clip, '' t.change_default :title, '' t.change_default :language, '' t.change_default :private, false end end def down change_table :clipster_clips do |t| t.change_default :hash, nil t.change_default :clip, nil t.change_default :title, nil t.change_default :language, nil t.change_default :private, false end end end
Version data entries
6 entries across 6 versions & 1 rubygems