Sha256: 659d576356f53cfd0b41a671efc4f3760f9503976bf76fc6fadf67a6edebf6a6
Contents?: true
Size: 285 Bytes
Versions: 23
Compression:
Stored size: 285 Bytes
Contents
class CreatePosts < ActiveRecord::Migration def self.up create_table :posts do |t| t.string :title t.text :image_url t.boolean :flagged t.datetime :houdini_request_sent_at t.timestamps end end def self.down drop_table :posts end end
Version data entries
23 entries across 23 versions & 3 rubygems