Sha256: 2840ad811674f6113de285366885afe81f0b13841ee2e038c4ad9f13fbd153d7
Contents?: true
Size: 261 Bytes
Versions: 4
Compression:
Stored size: 261 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 null: false end end def self.down drop_table :people end end
Version data entries
4 entries across 4 versions & 2 rubygems