aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb
Commit message (Expand)AuthorAgeFilesLines
* `valid_type?` should accept only supported typesRyuta Kamizono2017-02-281-4/+0
* Deprecate `supports_migrations?` on connection adaptersRyuta Kamizono2017-02-271-5/+0
* Merge pull request #28176 from kamipo/push_valid_type_up_to_abstract_adapterAndrew White2017-02-261-1/+1
|\
| * Push `valid_type?` up to abstract adapterRyuta Kamizono2017-02-261-1/+1
* | Fix `change_column` to drop default with `null: false`Ryuta Kamizono2017-02-261-2/+1
|/
* Deprecate `supports_primary_key?`Ryuta Kamizono2017-02-121-4/+0
* `primary_key` and `references` columns should be identical typeRyuta Kamizono2017-02-071-0/+5
* SQLite: Foreign Key SupportRyuta Kamizono2017-01-171-0/+25
* Translate Foreign Key violation to the specific exception for SQLite3 adapterRyuta Kamizono2017-01-161-0/+21
* Deprecate passing `name` to `indexes` like `tables`Ryuta Kamizono2017-01-041-0/+6
* `#tables` and `#table_exists?` and returns only tables and not viewsRafael Mendonça França2016-12-291-20/+13
* Remove deprecated `name` argument from `#tables`Rafael Mendonça França2016-12-291-7/+1
* Fix Rubocop violations and fix documentation visibilityRafael Mendonça França2016-12-281-2/+2
* Privatize unneededly protected methods in Active RecordAkira Matsuda2016-12-241-10/+9
* Translate NOT NULL violation to the specific exceptionRyuta Kamizono2016-12-061-0/+2
* Change MySQL and Postgresql to use Bigint primary keysJon McCartie2016-12-051-0/+2
* Make `:auto_increment` to internal primary key optionRyuta Kamizono2016-12-061-0/+9
* Add `:nodoc` to `table_structure`Ryuta Kamizono2016-11-121-9/+2
* Refactor column initialization into `new_column_from_field`Kir Shatrov2016-11-111-12/+16
* Add more rubocop rules about whitespacesRafael Mendonça França2016-10-291-6/+6
* Fix the variable scoping issue I introduced in 007e50d8e5a900547471b6c4ec79d9...Matthew Draper2016-10-281-2/+2
* Permit loads while queries are runningMatthew Draper2016-10-271-19/+25
* Quote table name properlyRyuta Kamizono2016-10-141-4/+6
* Add three new rubocop rulesRafael Mendonça França2016-08-161-5/+5
* normalizes indentation and whitespace across the projectXavier Noria2016-08-061-3/+3
* modernizes hash syntax in activerecordXavier Noria2016-08-061-6/+6
* applies new string literal convention in activerecord/libXavier Noria2016-08-061-40/+40
* Merge pull request #25523 from kamipo/extract_quoted_binds_type_casted_bindsSean Griffin2016-07-261-3/+3
|\
| * Extract `type_casted_binds` methodRyuta Kamizono2016-07-261-3/+3
* | systematic revision of =~ usage in ARXavier Noria2016-07-231-1/+1
|/
* Pass `type_casted_binds` to log subscriber for logging bind values properlyRyuta Kamizono2016-07-191-1/+1
* rails -> Rails [ci skip]Santosh Wadghule2016-07-121-1/+1
* Fix some typos in comments.Joe Rafaniello2016-05-041-1/+1
* Dont simply assume a type is a valid database type. This is only always true ...Vipul A M2016-04-251-0/+4
* Follow up of #23461Vipul A M2016-04-241-1/+1
* Include the Savepoints module in all adapters.Vipul A M2016-04-241-1/+0
* Move `select_rows` implementation to super classRyuta Kamizono2016-04-241-4/+0
* https://github.com/rails/rails/commit/42dd2336b31a8d98776d039a2b9fd7f834156a7...Vipul A M2016-04-231-0/+4
* Define `arel_visitor` method on all adaptersRyuta Kamizono2016-04-201-0/+4
* Merge pull request #23515 from kamipo/extract_arel_visitorJeremy Daer2016-04-191-9/+0
|\
| * Extract `arel_visitor` and move up to the abstract adapterRyuta Kamizono2016-04-041-9/+0
* | Move `quoted_date`, `quote_string` and `quote_table_name_for_assignment` meth...Ryuta Kamizono2016-04-051-10/+0
|/
* Move `@quoted_{column|table}_names` cache up to the abstract adapterRyuta Kamizono2016-03-311-5/+0
* Make to private the visibility of `_quote` and `_type_cast`Ryuta Kamizono2016-03-301-24/+3
* Passing `table_name` to `Column#initialize` to avoid `instance_variable_set`Ryuta Kamizono2016-03-081-3/+1
* Initialize `column.table_name` immediately for `column.serial?` correctly wor...Ryuta Kamizono2016-03-081-2/+5
* SQLite 2 support has been dropped [ci skip]Ryuta Kamizono2016-02-041-1/+0
* Extract `ExplainPrettyPrinter` to appropriate filesRyuta Kamizono2016-02-011-15/+2
* `{update|delete}_sql` are almost the same as `{update|delete}`Ryuta Kamizono2016-01-081-5/+0
* Remove `delete_sql` in sqlite3 adapterRyuta Kamizono2016-01-071-5/+0