Advertisement
Guest User

Cabs relation

a guest
Feb 1st, 2015
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. class Simple < ActiveRecord::Migration
  2.   def change
  3.         create_table :cabsses do |t|
  4.              t.string :cab_type
  5.              t.string :cab_no
  6.              t.integer :rate
  7.              t.boolean :insure
  8.              t.timestamps null: false
  9.         end
  10.   end
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement