Sha256: b8f54a3bc5a81343c762fc097a390b31aa586fceeecff9fe56fe3d4c184e6bee
Contents?: true
Size: 249 Bytes
Versions: 38
Compression:
Stored size: 249 Bytes
Contents
class CreatePeople < ActiveRecord::Migration def self.up create_table :people do |t| t.string :name t.string :description t.integer :post_id t.timestamps end end def self.down drop_table :people end end
Version data entries
38 entries across 38 versions & 4 rubygems