Sha256: 125e272050ff0c69fd85892441ad102ee4730d4cd0db869e8c1a7de0471f17bc

Contents?: true

Size: 354 Bytes

Versions: 1

Compression:

Stored size: 354 Bytes

Contents

class CreateReports < ActiveRecord::Migration
  def change
    create_table :reports do |t|
      t.string :type
      t.datetime :from_date
      t.datetime :to_date
      t.string :csv_file_name
      t.string :csv_content_type
      t.integer :csv_file_size
      t.datetime :csv_updated_at
      t.string :state

      t.timestamps
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mint_reporter-0.0.7 db/migrate/20140703143528_create_reports.rb