Sha256: 9ba42c9215d39c1d4023d8c879435db4b91cc158ff58855a9d7162065b202821
Contents?: true
Size: 249 Bytes
Versions: 5
Compression:
Stored size: 249 Bytes
Contents
class CreateComments < ActiveRecord::Migration def self.up create_table :comments do |t| t.integer :photo_id t.string :author t.text :body t.timestamps end end def self.down drop_table :comments end end
Version data entries
5 entries across 5 versions & 2 rubygems