Sha256: e0e63cc7087604817a9c802a7317571fcfcf7e4803346712ba1aa137b488494e

Contents?: true

Size: 220 Bytes

Versions: 6

Compression:

Stored size: 220 Bytes

Contents

class CreateXmls < ActiveRecord::Migration
  def self.up
    create_table :xmls do |t|
      t.string :name
      t.datetime :create_time

      t.timestamps
    end
  end

  def self.down
    drop_table :xmls
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
fidius-cvedb-0.0.8 lib/db/migrate/20101202100411_create_xmls.rb
fidius-cvedb-0.0.7 lib/db/migrate/20101202100411_create_xmls.rb
fidius-cvedb-0.0.6 lib/db/migrate/20101202100411_create_xmls.rb
fidius-cvedb-0.0.5 lib/db/migrate/20101202100411_create_xmls.rb
fidius-cvedb-0.0.3 lib/db/migrate/20101202100411_create_xmls.rb
fidius-cvedb-0.0.2 lib/db/migrate/20101202100411_create_xmls.rb