Sha256: d4f635a98222952bc9d0e5a4b93e43d11b4f2380d454fa01692f104f14a86297

Contents?: true

Size: 1.19 KB

Versions: 7

Compression:

Stored size: 1.19 KB

Contents

Description:
    Stubs out a new database migration. Pass the migration name, either
    CamelCased or under_scored, and an optional list of attribute pairs as arguments.

    A migration class is generated in db/migrate_mysql prefixed by a timestamp of the current date and time.

    You can name your migration in either of these formats to generate add/remove
    column lines from supplied attributes: AddColumnsToTable or RemoveColumnsFromTable

Example:
    `./script/generate secondbase_migration AddSslFlag`

    If the current date is May 14, 2008 and the current time 09:09:12, this creates the AddSslFlag migration
    db/migrate_mysql/20080514090912_add_ssl_flag.rb

    `./script/generate secondbase_migration AddTitleBodyToPost title:string body:text published:boolean`
    
    This will create the AddTitleBodyToPost in db/migrate_mysql/20080514090912_add_title_body_to_post.rb with
    this in the Up migration:

      add_column :posts, :title, :string  
      add_column :posts, :body, :text  
      add_column :posts, :published, :boolean

    And this in the Down migration:
    
      remove_column :posts, :published  
      remove_column :posts, :body  
      remove_column :posts, :title

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
secondbase-0.6.0 rails_generators/secondbase/USAGE
secondbase-0.5.0 rails_generators/secondbase/USAGE
secondbase-0.4.3 rails_generators/secondbase/USAGE
secondbase-0.4.2 rails_generators/secondbase/USAGE
secondbase-0.4.1 rails_generators/secondbase/USAGE
secondbase-0.4.0 rails_generators/secondbase/USAGE
secondbase-0.3.3 rails_generators/secondbase/USAGE