Sha256: a2a4c8adf387840a19a663d036df21ebba84324ff84704dc95b9461459e438ef
Contents?: true
Size: 265 Bytes
Versions: 14
Compression:
Stored size: 265 Bytes
Contents
class CreatePosts < ActiveRecord::Migration def self.up create_table :posts do |t| t.integer :comment_id t.text :body t.string :name t.integer :user_id t.timestamps end end def self.down drop_table :posts end end
Version data entries
14 entries across 7 versions & 1 rubygems