Last active
January 12, 2016 06:15
-
-
Save MrIee/8f1d3563397c5cf672c5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Tables | |
Airplane | |
id :integer | |
name :string | |
seat_row :integer | |
seat_column :string | |
User | |
id :integer | |
name :string | |
email :string | |
admin :boolean | |
password_digest :string | |
Flight | |
id :integer | |
flight_number :integer | |
origin :string | |
destination :string | |
date :datetime | |
airplane_id :integer | |
Reservation | |
id :integer | |
user_id :integer | |
flight_id :integer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment