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

20140922074342_create_uploads.rb 199B

123456789101112
  1. class CreateUploads < ActiveRecord::Migration
  2. def change
  3. create_table :uploads do |t|
  4. t.string :title
  5. t.string :file
  6. t.text :description
  7. t.timestamps
  8. end
  9. end
  10. end