class method self.create_table!

Ruby on Rails 2.2.3

Since v2.2.3 Last seen in v2.2.3

Signature

self.create_table!()

No documentation comment.

Source
# File actionpack/lib/action_controller/session/active_record_store.rb, line 200
          def create_table!
            @@connection.execute <<-end_sql
              CREATE TABLE #{table_name} (
                id INTEGER PRIMARY KEY,
                #{@@connection.quote_column_name(session_id_column)} TEXT UNIQUE,
                #{@@connection.quote_column_name(data_column)} TEXT
              )
            end_sql
          end

Defined in actionpack/lib/action_controller/session/active_record_store.rb line 200 · View on GitHub · Improve this page · Find usages on GitHub

Defined in CGI::Session::ActiveRecordStore::SqlBypass

Type at least 2 characters to search.

↑↓ navigate · open · esc close