Skip to content
Snippets Groups Projects

DCF Pagination and DCF markup updates

Merged Jeff Sturek requested to merge JSTUREK8/unl-resource-scheduler:pcf-pagination into master
23 files
+ 562
539
Compare changes
  • Side-by-side
  • Inline
Files
23
 
require 'active_record'
 
 
class CreateDatabase < ActiveRecord::Migration
 
def change
 
create_table :maker_requests do |t|
 
t.string :name
 
t.string :resource_type
 
t.string :model
 
t.text :description
 
t.integer :service_space_id
 
t.integer :minutes_per_reservation
 
t.boolean :needs_authorization
 
t.boolean :needs_approval
 
end
 
 
add_column :event, :admin_notes, :text
 
end
 
end
Loading