Sha256: dc036537601ab2bf23eff2eb881a7ea26b9f8b7fe7d5381dcf80a4ae5c581418
Contents?: true
Size: 225 Bytes
Versions: 4
Compression:
Stored size: 225 Bytes
Contents
class CreatePosts < ActiveRecord::Migration def self.up create_table :posts do |t| t.string :title t.text :body t.timestamps null: false end end def self.down drop_table :posts end end
Version data entries
4 entries across 4 versions & 2 rubygems