aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/active_record/session_migration/session_migration_generator.rb
blob: d60da5c0a5620e37d6ae2a5fc3ec08a56ef05d0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'generators/active_record'

module ActiveRecord
  module Generators
    class SessionMigrationGenerator < Base
      argument :name, :type => :string, :default => "add_sessions_table"

      def create_migration_file
        migration_template "migration.rb", "db/migrate/#{file_name}.rb"
      end

      protected

        def session_table_name
          ActiveRecord::Base.pluralize_table_names ? 'session'.pluralize : 'session'
        end

    end
  end
end