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