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
/
schema_dumper.rb
Commit message (
Expand
)
Author
Age
Files
Lines
*
Remove magic comment in generated `schema.rb`
Ryuta Kamizono
2016-05-12
1
-4
/
+0
*
Dump indexes in `create_table` for generates SQL in one query
Ryuta Kamizono
2016-04-20
1
-20
/
+33
*
Database comments: Treat blank comments as no comment. Don't dump blank comme...
Jeremy Daer
2016-04-19
1
-1
/
+1
*
Database comments: switch to keyword args for new table options
Jeremy Daer
2016-04-18
1
-2
/
+3
*
Add support for specifying comments for tables, columns, and indexes.
Andrey Novikov
2016-04-16
1
-0
/
+4
*
Merge pull request #24054 from kamipo/extract_default_primary_key
Rafael França
2016-03-11
1
-1
/
+1
|
\
|
*
Extract `default_primary_key?` to refactor `column_spec_for_primary_key`
Ryuta Kamizono
2016-03-11
1
-1
/
+1
*
|
Initialize `column.table_name` immediately for `column.serial?` correctly wor...
Ryuta Kamizono
2016-03-08
1
-4
/
+1
|
/
*
Revert "Dump indexes in `create_table` instead of `add_index`"
Sean Griffin
2016-02-05
1
-4
/
+6
*
Prevent destructive action on production database
schneems
2016-01-07
1
-1
/
+1
*
introduce `conn.data_source_exists?` and `conn.data_sources`.
Yves Senn
2015-09-22
1
-1
/
+1
*
Merge pull request #21609 from kamipo/do_not_dump_view_as_table
Jeremy Daer
2015-09-19
1
-1
/
+1
|
\
|
*
Do not dump a view as a table in sqlite3, mysql and mysql2 adapters
Ryuta Kamizono
2015-09-13
1
-1
/
+1
*
|
Correctly dump composite primary key
Ryuta Kamizono
2015-09-20
1
-6
/
+13
*
|
Don't hardcode table name
schneems
2015-09-16
1
-1
/
+1
|
/
*
Remove unused already require
Ryuta Kamizono
2015-05-19
1
-1
/
+0
*
Merge pull request #19994 from kamipo/dump_indexes_in_create_table
Rafael Mendonça França
2015-05-03
1
-6
/
+4
|
\
|
*
Dump indexes in `create_table` instead of `add_index`
Ryuta Kamizono
2015-05-03
1
-6
/
+4
*
|
Correctly dump `:options` on `create_table` for MySQL
Ryuta Kamizono
2015-05-03
1
-0
/
+4
|
/
*
Add `:charset` and `:collation` options support for MySQL string and text col...
Ryuta Kamizono
2015-03-06
1
-1
/
+4
*
Improve a dump of the primary key support.
Ryuta Kamizono
2014-12-29
1
-5
/
+6
*
Dump the default `nil` for PostgreSQL UUID primary key.
Ryuta Kamizono
2014-12-26
1
-1
/
+1
*
`force: :cascade` to recreate tables referenced by foreign-keys.
Yves Senn
2014-12-19
1
-1
/
+1
*
no need to pass native_database_types around
Yves Senn
2014-12-02
1
-2
/
+1
*
Remove is_a? check when ignoring tables
Sean Griffin
2014-11-20
1
-6
/
+1
*
add bigserial pk support
Aaron Patterson
2014-10-29
1
-0
/
+2
*
do not dump foreign keys for ignored tables.
Yves Senn
2014-09-17
1
-1
/
+1
*
Schema dumper: all connection adapters implement #primary_key, so rely on it ...
Jeremy Kemper
2014-09-07
1
-10
/
+1
*
Fix warnings for undefined local variable
Tee Parham
2014-09-07
1
-6
/
+10
*
Prefer "if any?" to "unless empty?"
Tee Parham
2014-09-07
1
-9
/
+6
*
Convert string concatenations to substitutions
Tee Parham
2014-09-07
1
-15
/
+15
*
Extract iterator method in AR::SchemaDumper
Caleb Thompson
2014-07-25
1
-10
/
+14
*
Dump PostgreSQL primary key with custom function as a default.
Andrey Novikov
2014-07-11
1
-1
/
+2
*
fk: use random digest names
Yves Senn
2014-06-26
1
-3
/
+13
*
fk: dump foreign keys at the bottom to make sure tables exist.
Yves Senn
2014-06-26
1
-6
/
+9
*
fk: support for on_update
Yves Senn
2014-06-26
1
-0
/
+1
*
fk: rename `dependent` to `on_delete`
Yves Senn
2014-06-26
1
-1
/
+1
*
fk: support dependent option (:delete, :nullify and :restrict).
Yves Senn
2014-06-26
1
-0
/
+2
*
fk: dump foreign keys to schema.rb
Yves Senn
2014-06-26
1
-0
/
+22
*
Push default_function to superclass to avoid method check
Rafael Mendonça França
2013-10-14
1
-1
/
+1
*
Dump the default function when the primary key is uuid
Rafael Mendonça França
2013-10-14
1
-0
/
+1
*
Creating options for schema dumper.
wangjohn
2013-08-22
1
-5
/
+16
*
Make SchemaDumper emit "id: :uuid" when appropriate. Fixes #10451.
Brian Buchanan
2013-05-03
1
-1
/
+4
*
Add support for FULLTEXT and SPATIAL indexes using the :type flag for MySQL.
Ken Mazaika
2013-03-27
1
-0
/
+2
*
Dump the 'using' options for a SQL index into the schema.
Ken Mazaika
2013-03-27
1
-0
/
+2
*
Created a layer of abstraction for the valid type checking in schema dumper. ...
Ranjay Krishna
2013-03-25
1
-1
/
+1
*
Revert "checking in the abstractions for valid type checking:"
Jon Leighton
2013-02-15
1
-1
/
+1
*
Merge pull request #9204 from ranjaykrishna/col-prob
Aaron Patterson
2013-02-12
1
-1
/
+1
|
\
|
*
checking in the abstractions for valid type checking:
Ranjay Krishna
2013-02-12
1
-1
/
+1
*
|
Do not print anything related to extensions when they don't none exist
Carlos Antonio da Silva
2013-02-06
1
-4
/
+6
[next]