Sha256: 636bbd16cc0495bf42b6541314e2a942f424a026c8e496dc136fcdebc819cfd2
Contents?: true
Size: 299 Bytes
Versions: 24
Compression:
Stored size: 299 Bytes
Contents
class CreateComments < ActiveRecord::Migration def self.up create_table :comments do |t| t.string :obj_id t.string :name t.string :email t.string :subject t.text :body t.datetime :created_at end end def self.down drop_table :comments end end
Version data entries
24 entries across 24 versions & 1 rubygems