Sha256: a7b4361a89f85448edee02fee45402cb1aa3d57dd65653dddabea4d4a2fee4ba
Contents?: true
Size: 248 Bytes
Versions: 13
Compression:
Stored size: 248 Bytes
Contents
class CreateThings < ActiveRecord::Migration def self.up create_table :things, :id => false do |t| t.string :name t.timestamps end end def self.down drop_table :things end end class Thing < ActiveRecord::Base end
Version data entries
13 entries across 13 versions & 4 rubygems