Ola Amigos! Today we present to you, a feature interview of Kartik Sharma. Kartik Sharma is an IIT Kharagpur alumnus. After successfully trying his hands in various domains, he received his ‘higher calling’ to build his own start-up. Zapped by the entrepreneurial bug, he wanted to build a product on his own for his company. [...]
Create a new application rails new explorcity Let create two models ie City and Destination. City has an attribute name. Destination has attributes like name, latitude, longitude and city_id. Let us go ahead and scaffold the two models rails generate scaffold City name:string rails generate scaffold Destination name:string latitude:float longitude:float city_id:integer Creating the tables rake [...]