Managing loaner chromebooks for students and teachers in the HUUSD school district.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 36 lines 942 B view raw
1# == Schema Information 2# 3# Table name: loaners 4# 5# id :integer not null, primary key 6# active :boolean 7# asset_tag :string 8# serial_number :string 9# status :string 10# created_at :datetime not null 11# updated_at :datetime not null 12# current_loan_id :integer 13# freindly_id :integer 14# loaner_id :integer 15# 16# Indexes 17# 18# index_loaners_on_asset_tag (asset_tag) 19# index_loaners_on_current_loan_id (current_loan_id) 20# index_loaners_on_loaner_id (loaner_id) 21# index_loaners_on_status (status) 22# 23# Foreign Keys 24# 25# current_loan_id (current_loan_id => loans.id) 26# 27 28# This model initially had no columns defined. If you add columns to the 29# model remove the "{}" from the fixture names and add the columns immediately 30# below each fixture, per the syntax in the comments below 31# 32one: {} 33# column: value 34# 35two: {} 36# column: value