aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/adapters/postgresql/uuid_test.rb
Commit message (Expand)AuthorAgeFilesLines
* Add `Style/EmptyLinesAroundMethodBody` in `.rubocop.yml` and remove extra emp...Ryuta Kamizono2017-02-121-1/+0
* Fix UUID primary key with default nil in legacy migrationRyuta Kamizono2017-01-091-0/+19
* Should test uuid legacy migration without `supports_pgcrypto_uuid?`Ryuta Kamizono2017-01-091-19/+17
* "Use assert_nil if expecting nil from ...:in `...'. This will fail in MT6."Akira Matsuda2016-12-251-2/+2
* "Use assert_nil if expecting nil. This will fail in minitest 6."Akira Matsuda2016-12-251-1/+1
* Should test `test_change_column_default` in `PostgresqlUUIDTest`Ryuta Kamizono2016-11-251-13/+13
* Merge pull request #27171 from kamipo/suppress_migration_messageMatthew Draper2016-11-251-0/+4
|\
| * Suppress migration message in the testRyuta Kamizono2016-11-251-0/+4
* | Remove blank else blockRyuta Kamizono2016-11-251-1/+0
|/
* For `PostgreSQL >= 9.4` use `gen_random_uuid()`Yaw Boakye2016-11-221-14/+59
* Fix CI failure caused by df84e9867219e9311aef6f4efd5dd9ec675bee5cRyuta Kamizono2016-08-231-2/+2
* applies remaining conventions across the projectXavier Noria2016-08-061-1/+0
* normalizes indentation and whitespace across the projectXavier Noria2016-08-061-2/+2
* applies new string literal convention in activerecord/testXavier Noria2016-08-061-40/+40
* Add expression support on the schema defaultRyuta Kamizono2016-01-131-4/+4
* Remove unnecessary enable,disable_extension on testsFumiaki MATSUSHIMA2016-01-021-9/+0
* Ensure uuid-ossp extension is present before we rely on itMatthew Draper2015-12-151-0/+2
* make it possible to run AR tests with bin/testYves Senn2015-06-111-4/+4
* Remove duplicated testRyuta Kamizono2015-03-041-20/+0
* prefer `drop_table if_exists: true` over raw SQL.Yves Senn2015-02-181-1/+1
* rm `Type#number?`Sean Griffin2015-02-071-1/+0
* Removed magic comments # encoding: utf-8 , since its default from ruby 2.0 on...Vipul A M2015-02-031-1/+0
* Remove most type related predicates from `Column`Sean Griffin2015-01-301-2/+4
* Should escape regexp wildcard character `.`Ryuta Kamizono2015-01-191-1/+1
* Prefer `array?` rather than `array`Ryuta Kamizono2015-01-041-1/+1
* Correctly ignore `case_sensitive` for UUID uniqueness validationSean Griffin2014-12-261-0/+17
* Dump the default `nil` for PostgreSQL UUID primary key.Ryuta Kamizono2014-12-261-0/+6
* `force: :cascade` to recreate tables referenced by foreign-keys.Yves Senn2014-12-191-1/+1
* Relax the UUID regexGodfrey Chan2014-12-181-3/+7
* tests, move schema shorthand assertions into pg specific tests.Yves Senn2014-12-021-0/+6
* tests, remove unneeded requires.Yves Senn2014-11-061-3/+0
* tests, use SchemaDumpingHelper to dump a specific table.Yves Senn2014-11-061-12/+12
* add bigserial pk supportAaron Patterson2014-10-291-0/+20
* Added enable_extension! to helperAbdelkader Boudih2014-09-051-5/+6
* adding the exception RecordNotFound to UUID findJoseLuis Torres2014-08-211-0/+14
* Allow to specify a type for foreign key column in migrationsAndrey Novikov2014-07-221-1/+1
* Treat invalid uuid as nilAbdelkader Boudih2014-07-141-0/+37
* Dump PostgreSQL primary key with custom function as a default.Andrey Novikov2014-07-111-0/+23
* Remove the `text?` predicate from the type objectsSean Griffin2014-07-061-1/+0
* [Postgresql tests] remove duplicate helperAbdelkader Boudih2014-06-281-12/+3
* test, use `columns_hash[]` in place of `columns.find {}`.Yves Senn2014-05-121-2/+2
* test, reset changed state in PG's uuid tests.Yves Senn2014-05-081-2/+4
* Changed change_column in PG schema_statements.rb to make sure that the uuid_g...Eric Chahin2014-04-151-0/+13
* Treat blank UUID values as nilDmitry Lavrov2014-04-031-0/+5
* PostgreSQL, test cases to lock the current column types.Yves Senn2014-03-281-1/+7
* extract common code in `uuid_test.rb`.Yves Senn2014-02-261-60/+57
* move PostgreSQL UUID tests from `datatype_test.rb` to `uuid_test.rb`.Yves Senn2014-02-261-0/+35
* Don't skip tests if we don't need to.Rafael Mendonça França2013-11-081-34/+46
* Dump the default function when the primary key is uuidRafael Mendonça França2013-10-141-2/+2
* Merge pull request #11382 from kennyj/fix_10751-2Rafael Mendonça França2013-09-221-0/+1
|\