class <%= migration_class_name %> < ActiveRecord::Migration<%= migration_version %>

def change
  create_table :blazer_uploads do |t|
    t.references :creator
    t.string :table
    t.text :description
    t.timestamps null: false
  end
end

end