Sha256: 5785a9aecbd27889c30f5b8cb1409d32d89a33713eb0f73bc76dc8b9ee360f1e
Contents?: true
Size: 255 Bytes
Versions: 70
Compression:
Stored size: 255 Bytes
Contents
class CreateComments < ActiveRecord::Migration def self.up create_table :comments do |t| t.column :post_id, :integer t.column :author, :string t.column :body, :text end end def self.down drop_table :comments end end
Version data entries
70 entries across 70 versions & 22 rubygems