Sha256: 11d1e4f3f96cd6a4b153432ee3c3a2b4dccd472f223d39500dcfbdd614daa403

Contents?: true

Size: 332 Bytes

Versions: 2

Compression:

Stored size: 332 Bytes

Contents

# This migration comes from puffer_pages (originally 20120812100913)
class CreateOrigins < ActiveRecord::Migration
  def self.up
    create_table :origins do |t|
      t.string :name
      t.string :host
      t.string :path
      t.string :token

      t.timestamps
    end
  end

  def self.down
    drop_table :origins
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
puffer_pages-0.5.1 spec/dummy/db/migrate/20130118071515_create_origins.rb
puffer_pages-0.5.0 spec/dummy/db/migrate/20130118071515_create_origins.rb