| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix behavior of handling BC era dates. | edogawaconan | 2014-06-05 | 2 | -3/+5 |
* | have an actual `NullColumn` object and update docs accordingly. | Yves Senn | 2014-06-04 | 2 | -1/+10 |
* | Collapse PG default extractoin of most types to single regex | Sean Griffin | 2014-06-04 | 1 | -48/+6 |
* | Change wording of explanation about precision & scale of decimal numbers [ci ... | Prathamesh Sonpatki | 2014-06-04 | 1 | -2/+2 |
* | Merge pull request #15492 from sgrif/sg-dirty-defaults | Rafael Mendonça França | 2014-06-03 | 1 | -1/+1 |
|\ |
|
| * | Keep column defaults in type cast form | Sean Griffin | 2014-06-03 | 1 | -1/+1 |
* | | Merge pull request #15486 from sgrif/sg-binary-quoting | Matthew Draper | 2014-06-04 | 4 | -47/+65 |
|\ \ |
|
| * | | Refactor quoting of binary data to not be based on the column type | Sean Griffin | 2014-06-03 | 4 | -47/+65 |
| |/ |
|
* | | pg, preserve money type when dumping schema and extract money default. | Yves Senn | 2014-06-03 | 3 | -0/+11 |
* | | Merge pull request #15487 from sgrif/sg-bit-limit | Yves Senn | 2014-06-03 | 2 | -24/+24 |
|\ \ |
|
| * | | Respect limit for PG bit strings | Sean Griffin | 2014-06-03 | 2 | -24/+24 |
* | | | Merge pull request #15442 from sgrif/sg-refactor-field-changed | Yves Senn | 2014-06-03 | 1 | -1/+1 |
|\ \ \
| |/ /
|/| | |
|
| * | | Refactor determination of whether the field has changed | Sean Griffin | 2014-06-03 | 1 | -1/+1 |
| |/ |
|
* / | pg, preserve type when schema dumping bit and bit varying columns. | Yves Senn | 2014-06-03 | 5 | -3/+31 |
|/ |
|
* | pg, preserve point type when schema dumping. | Yves Senn | 2014-06-03 | 3 | -2/+11 |
* | pg, inline casting methods into `OID::Type` objects. | Yves Senn | 2014-06-02 | 4 | -44/+25 |
* | Remove most code related to serialized properties | Sean Griffin | 2014-06-01 | 1 | -2/+2 |
* | refactor, introduce `Type#type_cast_for_schema` to cast for schema.rb | Yves Senn | 2014-05-30 | 4 | -26/+17 |
* | pg, support default values for enum types. Closes #7814. | Yves Senn | 2014-05-30 | 2 | -2/+9 |
* | pg, `default_sequence_name` respects schema. Closes #7516. | Yves Senn | 2014-05-30 | 1 | -2/+2 |
* | Merge pull request #11896 from nkondratyev/fix_pg_columns_for_distinct | Yves Senn | 2014-05-30 | 1 | -1/+1 |
|\ |
|
| * | Fixed `columns_for_distinct` of postgresql adapter | Nikolay Kondratyev | 2013-08-15 | 1 | -1/+1 |
* | | pg, `reset_pk_sequence!` respects schemas. Closes #14719. | Yves Senn | 2014-05-30 | 1 | -5/+13 |
* | | pg, `PostgreSQL::Name` to hold schema qualified names. | Yves Senn | 2014-05-30 | 3 | -17/+53 |
* | | Move `type_cast_for_write` behavior over to the serialized type object | Sean Griffin | 2014-05-29 | 1 | -1/+1 |
* | | Refactor serialized types to be partially defined as custom properties | Sean Griffin | 2014-05-29 | 2 | -6/+4 |
* | | Ensure we always use instances of the adapter specific column class | Sean Griffin | 2014-05-28 | 4 | -5/+14 |
* | | Keep closer to other methods that touch @transaction | Arthur Neves | 2014-05-28 | 2 | -4/+4 |
* | | Merge pull request #15370 from sgrif/sg-type-namespace | Rafael Mendonça França | 2014-05-28 | 19 | -498/+2 |
|\ \ |
|
| * | | Move types to the top level `ActiveRecord` namespace | Sean Griffin | 2014-05-27 | 19 | -498/+2 |
* | | | Merge pull request #15387 from sgrif/sg-remove-column-coder | Santiago Pastorino | 2014-05-28 | 1 | -14/+1 |
|\ \ \ |
|
| * | | | Remove unused `Column#coder` | Sean Griffin | 2014-05-28 | 1 | -14/+1 |
| |/ / |
|
* / / | pg, keep `hstore` and `json` attributes as `Hash` in @attributes. | Yves Senn | 2014-05-28 | 2 | -2/+14 |
|/ / |
|
* | | Remove AR Properties from the public API | Sean Griffin | 2014-05-27 | 10 | -10/+10 |
* | | Merge pull request #15295 from sgrif/sg-deprecate-decimals | Rafael Mendonça França | 2014-05-27 | 2 | -0/+3 |
|\ \ |
|
| * | | Deprecate decimal columns being automatically treated as integers | Sean Griffin | 2014-05-27 | 2 | -0/+3 |
* | | | Merge pull request #15359 from kuldeepaggarwal/f-remove-unwanted_to_sym | Yves Senn | 2014-05-27 | 1 | -1/+1 |
|\ \ \ |
|
| * | | | remove unwanted `to_sym` call. | Kuldeep Aggarwal | 2014-05-26 | 1 | -1/+1 |
* | | | | Merge pull request #15353 from sgrif/sg-mysql-condition | Rafael Mendonça França | 2014-05-26 | 1 | -2/+0 |
|\ \ \ \
| |_|/ /
|/| | | |
|
| * | | | Remove unnecessary branch from quoting in Mysql | Sean Griffin | 2014-05-26 | 1 | -2/+0 |
* | | | | Add a public API to allow users to specify column types | Sean Griffin | 2014-05-26 | 11 | -12/+21 |
|/ / / |
|
* | | | Extract types which don't require additional typecasting to a method | Sean Griffin | 2014-05-26 | 1 | -4/+9 |
* | | | Refactor the type casting of booleans in MySQL | Sean Griffin | 2014-05-26 | 2 | -13/+18 |
* | | | Remove checks against `column.type` in abstract adapter quoting | Sean Griffin | 2014-05-26 | 3 | -34/+21 |
* | | | Merge pull request #15307 from sgrif/sg-type-cast-for-write | Yves Senn | 2014-05-26 | 3 | -1/+15 |
|\ \ \ |
|
| * | | | Add an interface for type objects to control Ruby => SQL | Sean Griffin | 2014-05-26 | 3 | -1/+15 |
* | | | | pg, add missing `:nodoc:` to adapter. | Yves Senn | 2014-05-26 | 1 | -8/+8 |
* | | | | pg, remove unused code. Use `extract_schema_and_table` instead. | Yves Senn | 2014-05-26 | 1 | -10/+0 |
| |/ /
|/| | |
|
* | | | pg, remove duplicated code. | Yves Senn | 2014-05-24 | 1 | -4/+0 |
* | | | pg, extract schema definitions into separate file. | Yves Senn | 2014-05-24 | 2 | -135/+141 |
|/ / |
|