Sha256: 6a3b9f9e2d3942f2bea33373a96cb49425f2b8e0c2b19d67a3423a6e121afd56
Contents?: true
Size: 207 Bytes
Versions: 4
Compression:
Stored size: 207 Bytes
Contents
class CreateBlogPosts < ActiveRecord::Migration def self.up create_table :blog_posts do |t| t.string :title t.timestamps end end def self.down drop_table :blog_posts end end
Version data entries
4 entries across 3 versions & 1 rubygems