| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | | | |
| | | | |
| | | | |
| | | | | |
enum includes text or blob or ... hooked by wrong regex
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The file name should be name_scoping_test.rb and the class should be
`NamedScopingTest` according to ActiveRecord::Scoping::Name
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The scoping/default.rb and scoping/named.rb got moved under scoping/ in
commit 2b22564c4efaa63d4bbc006762838c4025c1bdca,
but the tests never did.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
valid_type? added to super class abstract_adapter
|
| | |_|/ /
| |/| | |
| | | | |
| | | | | |
valid_type? method to abstract_adapter.rb and removed unnecessary method from sqlite3 adapter
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
Fix typo: overriden => overriDDen
|
| | | | | |
|
| |/ / /
|/| | | |
|
|\ \ \ \
| | | | |
| | | | | |
Fix typo
|
| |/ / / |
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | | |
Fix updates not working within after_create hooks
|
| | | | |
|
| | | | |
|
|/ / / |
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | | |
Use define_method when method name contains weird characters.
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Restore columns dropped by hstore test
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Disabling the hstore extension during testing created order dependent
test failures.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
respect auto_increment in rename_column for mysql
|
| | | | | | |
|
| | | | | | |
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Adds support for algorithm option in MySQL indexes
Moves USING and algorithm options upstream
The syntax is still specific to the Adapter, so the actual executed string happens
in the corresponding adapter
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Now, connection handles the check for valid types so that each database can handle the changes individually.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Introduce test on Error#full_message for attribute with underscores; Fix...
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Introduce test on Error#full_message for attribute with underscores; Fix
some typos
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Fix ActiveRecord locking column defaults not getting persisted
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
When partial inserts are enabled, overridden db defaults are ignored. This
results in locking columns having a nil value for new records if the db default
is null. This happens because the list of changed attributes for new records is
always assumed to be empty.
Solution: When a new record's default attributes are set, also initialize the
list of changed attributes by comparing current values against what's stored as
the column defaults in the database.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Closes #9184
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Previously regex did not strip quotation marks where hstore values were multi-line strings.
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | |
| | | | | | | |
| | | | | | | | |
Custom index type support with :using.
Closes #9451
|
| | | | | | | | |
|
|/ / / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Make it obvious that using unscoped with another scope
without the block works
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
* schema:
add uuid primary key support
separate primary key from column type
push the mysql add_column up to the abstract adapter
allow multiple add columns
pull add_column_options! off the pg connection class
add a pg visitor for dealing with schema modification
push alter table add column sql in to the schema modification visitor
there is no reason to check for an already defined column
push column initialization down to the factory method
@columns list is no longer necessary
keep ivars private, do not manipulate them outside their owner object
factory methods should not alter object state
push SQL generation inside the schema creation object
mostly decouple TableDefinition from the database connection
remove to_sql from TableDefinition
decouple column definition from the database connection
stop depending on sql_type in pg
remove knowledge of SQL from the column definition object
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
|/ / / / / / / |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Removed unused loop variable
|
| | |/ / / / /
| |/| | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Removed unnecessary block
|
| | |_|/ / / /
| |/| | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Conflicts:
activerecord/lib/active_record/associations/preloader/through_association.rb
activerecord/test/cases/associations/eager_test.rb
|