aboutsummaryrefslogblamecommitdiffstats
path: root/railties/lib/rails_generator/generators/components/session_migration/USAGE
blob: 3234a4efd0de6cffe644730d957e53468d45bf53 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                                                         
                                           
Description:
    The session table migration generator creates a migration for adding a session table 
    used by CGI::Session::ActiveRecordStore.

    The generator takes a migration name as its argument.  The migration name may be
    given in CamelCase or under_score.

    The generator creates a migration class in db/migrate prefixed by its number
    in the queue.

Example:
    ./script/generate session_migration AddSessionTable

    With 4 existing migrations, this will create an AddSessionTable migration in the
    file db/migrate/005_add_session_table.rb