Sha256: f5e082ba1c24cce52f3322d5dcd4992a1dca700a246daacc7fda8bdc3f2bf4c7

Contents?: true

Size: 882 Bytes

Versions: 3

Compression:

Stored size: 882 Bytes

Contents

=begin
******************************************************************************************************************

  FileName:                                          20120608104637_devise_create_users.rb

	Company Name and Copyright information:            Mindfire Solutions Pvt. Ltd.

	Creator name and date:                             Indranil Mukherjee 08/06/2012

	Description of the file contents:                  This is the migration file for creating role table for users
                                                     In our case mcms_roles

******************************************************************************************************************
=end

class CreateRoles < ActiveRecord::Migration

  def change
    
    create_table :mcms_roles do |t|

      t.string :title # only title column
      
      t.timestamps

    end

  end
  
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mcms_authentication-1.0.0 db/migrate/20120608104637_create_roles.rb
mcms_authentication-0.0.3 db/migrate/20120608104637_create_roles.rb
mcms_authentication-0.0.2 db/migrate/20120608104637_create_roles.rb