Sha256: 52b8e10a77948c648d58ab22aa624bf86e1483b983525dd8c8acf595c32fbecc
Contents?: true
Size: 311 Bytes
Versions: 21
Compression:
Stored size: 311 Bytes
Contents
# :stopdoc: 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
21 entries across 21 versions & 1 rubygems