Sha256: 2e7be75a66d57421ac0712c8d8a6ee4f5197fba7e9f41c1b4dfd5461489daebc
Contents?: true
Size: 239 Bytes
Versions: 60
Compression:
Stored size: 239 Bytes
Contents
class CreateBlogs < ActiveRecord::Migration def self.up create_table :blogs do |t| t.integer :user_id t.string :title t.text :body t.timestamps end end def self.down drop_table :blogs end end
Version data entries
60 entries across 60 versions & 1 rubygems