index
:
rails.git
3-2-stable-for-hmno
master
Mirror of official rails repo with custom fixes.
Harald Eilertsen
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
activerecord
/
lib
/
active_record
/
tasks
Commit message (
Expand
)
Author
Age
Files
Lines
*
create/drop test and development databases only if RAILS_ENV is nil
Damien Mathieu
2014-01-08
1
-1
/
+2
*
Automatically maintain test database schema
Jon Leighton
2014-01-02
1
-3
/
+41
*
Cast env to symbol, fixes deprecation warning
Łukasz Strzałkowski
2013-12-25
1
-1
/
+1
*
Guarantee the connection resolver handles string values
José Valim
2013-12-23
1
-18
/
+1
*
Revert "Explicitly exit with status "1" for create and drop failures"
Rafael Mendonça França
2013-11-19
1
-3
/
+0
*
Merge pull request #12531 from iamvery/database-tasks-exit-status
Rafael Mendonça França
2013-11-15
1
-0
/
+3
|
\
|
*
Explicitly exit with status "1" for create and drop failures
Jay Hayes
2013-11-11
1
-0
/
+3
*
|
Warnings removed for ruby trunk
Arun Agrawal
2013-11-01
1
-1
/
+1
*
|
Fix loading a sql structure file on postgres when the file's path has whitesp...
Kevin Mook
2013-10-21
1
-1
/
+1
*
|
Convert Fixnum into String the port number in MySQL
Kenta Okamoto
2013-10-18
1
-1
/
+2
|
/
*
let the sqlite task run without rails
Damien Mathieu
2013-08-07
2
-2
/
+3
*
Remove FirebirdDatabaseTasks was deprecated, because this was provided by 3rd...
kennyj
2013-06-05
2
-58
/
+0
*
Remove SqlseverDatabaseTasks was deprecated, because this was provided by 3rd...
kennyj
2013-06-05
2
-49
/
+0
*
Remove OracleDatabaseTasks was deprecated, because this was provided by 3rd-p...
kennyj
2013-06-05
2
-46
/
+0
*
Mute psql output when running rake db:schema:load
Godfrey Chan
2013-04-30
1
-1
/
+1
*
Abort a rake task when missing db/structure.sql like `db:schema:load` task.
kennyj
2013-05-01
1
-0
/
+8
*
Review DatabaseTasks docs [ci skip]
Carlos Antonio da Silva
2013-04-24
1
-17
/
+17
*
Use env == 'development' instead of env.development?
Piotr Sarnacki
2013-04-24
1
-1
/
+1
*
Don't require Rails.env in order to use AR::Tasks::DatabaseTasks
Piotr Sarnacki
2013-04-24
1
-6
/
+7
*
Add some documentation to ActiveRecord::Tasks::DatabaseTasks
Piotr Sarnacki
2013-04-24
1
-1
/
+29
*
Use DatabaseTasks.fixtures_path instead of FIXTURES_PATH in db.rake
Piotr Sarnacki
2013-04-24
1
-1
/
+2
*
Don't require having Rails.application to run database tasks
Piotr Sarnacki
2013-04-24
1
-0
/
+11
*
Add deprecation message on Firebird / Sqlserver / Oracle database tasks.
kennyj
2013-04-03
3
-0
/
+3
*
Extract Oracle database tasks.
kennyj
2013-04-03
2
-5
/
+50
*
Extract Sqlserver database tasks.
kennyj
2013-04-03
2
-1
/
+50
*
Extract Firebird database tasks.
kennyj
2013-04-03
2
-0
/
+56
*
`rake db:create` does not change permissions of root user.
Yves Senn
2013-03-17
1
-1
/
+3
*
rake db:structure:dump warns when `mysqldump` is not in PATH.
Yves Senn
2013-03-06
1
-1
/
+4
*
Raise a specific exception with a useful message if a rake task is requested ...
Daniel Azuma
2013-01-30
1
-0
/
+4
*
Improve mysql database tasks handling to ensure we always rescue from an exce...
Carlos Antonio da Silva
2013-01-15
1
-9
/
+13
*
Fix AR tests due to Mysql constant not being defined
Carlos Antonio da Silva
2013-01-12
3
-7
/
+5
*
Bring back "database already exists" messages when running rake tasks
Carlos Antonio da Silva
2013-01-12
4
-13
/
+20
*
Correct default charset/collation for mysql dbs
Jeremy Kemper
2012-09-21
1
-6
/
+9
*
Use default charset/collation only if *neither* is specified. Otherwise we se...
Jeremy Kemper
2012-09-21
1
-4
/
+7
*
fixed support for DATABASE_URL for rake db tasks
Grace Liu
2012-09-11
1
-0
/
+28
*
Use configuration['encoding'], because database configuration use not charset...
kennyj
2012-09-12
1
-3
/
+3
*
Use native mysqldump command for 'rake db:structure:dump'.
kennyj
2012-09-12
1
-9
/
+19
*
Use the 'mysql' binary for 'rake db:structure:load'.
Seamus Abshere
2012-09-05
1
-4
/
+8
*
removes usage of Object#in? from the code base (the method remains defined by...
Xavier Noria
2012-08-06
1
-1
/
+1
*
Merge pull request #6838 from kennyj/added_registration_task
Carlos Antonio da Silva
2012-07-07
1
-7
/
+11
|
\
|
*
Added a feature to add a database task. e.g. OracleDatabaseTasks
kennyj
2012-06-24
1
-7
/
+11
*
|
Unify the collation API for the database adpters
Rafael Mendonça França
2012-07-01
1
-1
/
+1
*
|
Extract collation tasks to database tasks.
kennyj
2012-07-01
3
-0
/
+17
|
/
*
Refactor db:structure:load task.
kennyj
2012-06-21
4
-0
/
+24
*
Refactor db:structure:dump task.
kennyj
2012-06-20
4
-0
/
+38
*
Refactor db:charset task
Simon Jefford
2012-06-19
4
-3
/
+24
*
Make DatabaseTasks a module with real private methods
Carlos Antonio da Silva
2012-06-18
1
-13
/
+14
*
fix invalid syntax and sqlite rake failing tests
Francesco Rodriguez
2012-06-18
1
-2
/
+3
*
add :nodoc: to AR::Tasks and update to follow the coding conventions
Francesco Rodriguez
2012-06-18
4
-208
/
+226
*
check if sqlite3 file exists before remove
Francesco Rodriguez
2012-06-18
1
-3
/
+3
[next]