aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Expand)AuthorAgeFilesLines
* Move `require 'ipaddr'` in `postgresql/oid/cidr.rb`Ryuta Kamizono2016-04-242-2/+2
* Schema load: Fix dupe version insertJeremy Daer2016-04-221-1/+1
* https://github.com/rails/rails/commit/42dd2336b31a8d98776d039a2b9fd7f834156a7...Vipul A M2016-04-233-4/+25
* Revert "add doc for `:type` option of `#create_join_table` [ci skip]"प्रथमेश Sonpatki2016-04-211-2/+0
* add doc for `:type` option of `#create_join_table` [ci skip]yuuji.yaginuma2016-04-211-0/+2
* Merge pull request #24221 from gregmolnar/uuidKasper Timm Hansen2016-04-201-2/+3
|\
| * add column type option to create_join_table to support uuidGreg Molnar2016-03-171-2/+3
* | `undef_method` is not neededRyuta Kamizono2016-04-191-2/+3
* | Fix `test_blank_columns_created_in_block`Ryuta Kamizono2016-04-201-1/+1
* | Database comments: Treat blank comments as no comment. Don't dump blank comme...Jeremy Daer2016-04-191-1/+1
* | Define `arel_visitor` method on all adaptersRyuta Kamizono2016-04-204-1/+13
* | Merge pull request #24317 from Gaurav2728/unused_set_in_active_recordJeremy Daer2016-04-191-2/+0
|\ \
| * | connection adapters column, delegation in Active Record have not use of ‘se...Gaurav Sharma2016-03-311-2/+0
* | | Merge pull request #23497 from kamipo/extract_schema_qualified_nameJeremy Daer2016-04-191-8/+15
|\ \ \
| * | | Extract `extract_schema_qualified_name` methodRyuta Kamizono2016-02-051-8/+15
* | | | Merge pull request #23515 from kamipo/extract_arel_visitorJeremy Daer2016-04-194-28/+12
|\ \ \ \
| * | | | Extract `arel_visitor` and move up to the abstract adapterRyuta Kamizono2016-04-044-28/+12
* | | | | Merge pull request #23522 from kamipo/add_value_too_long_exception_classJeremy Daer2016-04-182-0/+5
|\ \ \ \ \
| * | | | | Add `ActiveRecord::ValueTooLong` exception classRyuta Kamizono2016-02-062-0/+5
| | |/ / / | |/| | |
* | | | | `foreign_key` respects `table_name_prefix` and `table_name_suffix`Ryuta Kamizono2016-04-191-0/+3
* | | | | Merge pull request #23622 from kamipo/primary_key_should_be_not_nullJeremy Daer2016-04-184-3/+10
|\ \ \ \ \
| * | | | | Primary key should be `NOT NULL`Ryuta Kamizono2016-03-124-3/+10
| | |_|_|/ | |/| | |
* | | | | Database comments: switch to keyword args for new table optionsJeremy Daer2016-04-189-64/+75
* | | | | Merge pull request #22911 from Envek/database_commentsJeremy Daer2016-04-1611-37/+166
|\ \ \ \ \
| * | | | | Add support for specifying comments for tables, columns, and indexes.Andrey Novikov2016-04-1611-37/+166
* | | | | | documentation for add_references index option [ci skip]Vipul A M2016-04-171-1/+10
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | [ci skip] docs for add_references index optionAlex Handley2016-04-161-1/+10
* | | | | | Should keep quoting behaivor of a time column value in sqlite3 adapterRyuta Kamizono2016-04-151-0/+4
* | | | | | Add `quoted_time` for truncating the date part of a time column valueRyuta Kamizono2016-04-141-0/+6
* | | | | | Merge pull request #24522 from vipulnsward/run-mariadb-on-travisJeremy Daer2016-04-131-4/+4
|\ \ \ \ \ \
| * | | | | | Include running mariadb on travisVipul A M2016-04-141-4/+4
* | | | | | | :nodoc: version method.Vipul A M2016-04-131-1/+1
|/ / / / / /
* / / / / / Pass over all Rails 5 warnings, to make sure:Vipul A M2016-04-121-2/+2
|/ / / / /
* | | | | Support microsecond datetime precision on MariaDB 5.3+.Jeremy Daer2016-04-081-1/+5
* | | | | Merge pull request #24078 from kamipo/show_variablesRafael França2016-04-061-2/+1
|\ \ \ \ \
| * | | | | Simply use `select_value` in `show_variable`Ryuta Kamizono2016-03-061-2/+1
* | | | | | Merge pull request #24374 from kamipo/move_quoting_methods_to_quoting_moduleRafael França2016-04-064-44/+38
|\ \ \ \ \ \
| * | | | | | Make `QUOTED_TRUE` and `QUOTED_FALSE` to public because these are used in `My...Ryuta Kamizono2016-04-062-6/+6
| * | | | | | Move `quoted_date`, `quote_string` and `quote_table_name_for_assignment` meth...Ryuta Kamizono2016-04-054-22/+16
| * | | | | | Make to private `QUOTED_TRUE` and `QUOTED_FALSE` constantsRyuta Kamizono2016-04-052-18/+18
* | | | | | | Remove hard-coded backticks in SQL statementsHarsimran Singh Maan2016-04-051-3/+3
|/ / / / / /
* | | | / / Use `QUOTED_TRUE` and `QUOTED_FALSE` instead of magic stringsyui-knk2016-04-051-4/+4
| |_|_|/ / |/| | | |
* | | | | Move `@quoted_{column|table}_names` cache up to the abstract adapterRyuta Kamizono2016-03-317-19/+20
| |_|_|/ |/| | |
* | | | Merge pull request #24368 from kamipo/make_to_private_the_visibilitySean Griffin2016-03-304-32/+54
|\ \ \ \
| * | | | Make to private the visibility of `_quote` and `_type_cast`Ryuta Kamizono2016-03-304-32/+54
* | | | | Add a test case for create a record with primary key as zeroRyuta Kamizono2016-03-301-0/+1
|/ / / /
* | | | Fix description for method ActiveRecord::ConnectionAdapters::SchemaStatements...Bogdan2016-03-271-2/+2
* | | | Append sql_mode instead of overwriting in strict modeRyuta Kamizono2016-03-131-3/+12
| |/ / |/| |
* | | Merge pull request #23797 from kamipo/case_sensitive_comparison_for_non_strin...Rafael França2016-03-111-3/+3
|\ \ \
| * | | The BINARY Operator is only needed for string columnsRyuta Kamizono2016-02-221-3/+3