db/migrate/20150701132604_create_data_bundles.rb (10 lines of code) (raw):
class CreateDataBundles < ActiveRecord::Migration
def change
create_table :data_bundles do |t|
t.string :file
t.string :name
t.integer :user_id
t.timestamps null: false
end
end
end