aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/rails/session_migration/session_migration_generator.rb
blob: 258cc5b4a0afcff91be609020ea5edbd9cfeaea8 (plain) (blame)
1
2
3
4
5
6
7
8
module Rails
  module Generators
    class SessionMigrationGenerator < NamedBase #metagenerator
      argument :name, :type => :string, :default => "add_sessions_table"
      hook_for :orm, :required => true
    end
  end
end