A website template with lots of features, built with ruby on rails.

20150109224815_add_tmp_to_files.rb 194B

1234567
  1. class AddTmpToFiles < ActiveRecord::Migration
  2. def change
  3. add_column :uploads, :file_tmp, :string
  4. add_column :uploads, :file_processing, :boolean, null: false, default: false
  5. end
  6. end