aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20120620081726_create_file_validations.rb
blob: d6544bb791b52c1e9bf87ff078561885e18249ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class CreateFileValidations < ActiveRecord::Migration
  def up
    create_table :file_validations do |t|
      t.string :status
      t.string :options, :limit => 2000
      t.string :file_name
      t.string :file_type
      t.timestamps
    end
  end

  def down
    drop_table :file_validations
  end
end