Sha256: fc7f72bdccff2f92731fa01c71a768bf7d3f6a9dc185453b0d05f92419be1b43
Contents?: true
Size: 308 Bytes
Versions: 8
Compression:
Stored size: 308 Bytes
Contents
class CreatePosts < ActiveRecord::Migration def self.up create_table :posts do |t| t.integer :user_id t.string :title t.text :body t.string :status t.string :filename t.string :type t.timestamps end end def self.down drop_table :posts end end
Version data entries
8 entries across 8 versions & 1 rubygems