Sha256: 65cdd12c4d8db831477e7b665ee12bb6f758d27e6472671029de861f48539af3

Contents?: true

Size: 549 Bytes

Versions: 4

Compression:

Stored size: 549 Bytes

Contents

# Doesn't calling the class "Helps" make it look just like it was written
# by a Russian guy or something?  Well, I like the way it looks well enough
# to let it stand as-is.

class CreateHelps < ActiveRecord::Migration
    def self.up
        create_table :helps do |t|
            t.column :facility, :string
            t.column :command, :string
            t.column :parameters, :string
            t.column :summary, :string
            t.column :explanation, :text
        end
    end

    def self.down
        drop_table :helps
    end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
sugoi-mail-0.1.0 db/migrate/027_create_helps.rb
sugoi-mail-0.1.5 db/migrate/027_create_helps.rb
sugoi-mail-0.3.0 db/migrate/027_create_helps.rb
sugoi-mail-0.3.2 db/migrate/027_create_helps.rb