Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Migration in Ruby on Rails

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 272
    Comment on it

    Migrations comes up with the convenient way to alter your database in a structured and organized pattern.
    it makes use of Ruby DSL so no need to write SQL statements, allowing your schema to reflect changes independently.

    Anatomy of Migration

    1. class CreateProducts < ActiveRecord::Migration
    2. def up
    3. create_table :products do |t|
    4. t.string :name
    5. t.text :description
    6.  
    7. t.timestamps
    8. end
    9. end
    10.  
    11. def down
    12. drop_table :products
    13. end
    14.  
    15. end

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: