aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_record_migrations.md
diff options
context:
space:
mode:
authoriangilfillan <github@greenman.co.za>2016-04-14 14:06:29 +0200
committeriangilfillan <github@greenman.co.za>2016-04-14 14:06:29 +0200
commit48ef9408bcd6c29807dbaeb5b9fc39ba5a851063 (patch)
tree3a3a0acbf1694df5323eaa79fc1f7ec83bf87b40 /guides/source/active_record_migrations.md
parent4440df10a051d7d8ea2da6fdaa2e57342c2e027e (diff)
downloadrails-48ef9408bcd6c29807dbaeb5b9fc39ba5a851063.tar.gz
rails-48ef9408bcd6c29807dbaeb5b9fc39ba5a851063.tar.bz2
rails-48ef9408bcd6c29807dbaeb5b9fc39ba5a851063.zip
MariaDB Documentation
Diffstat (limited to 'guides/source/active_record_migrations.md')
-rw-r--r--guides/source/active_record_migrations.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/active_record_migrations.md b/guides/source/active_record_migrations.md
index cd6b7fdd67..b89485b945 100644
--- a/guides/source/active_record_migrations.md
+++ b/guides/source/active_record_migrations.md
@@ -353,7 +353,7 @@ end
```
will append `ENGINE=BLACKHOLE` to the SQL statement used to create the table
-(when using MySQL, the default is `ENGINE=InnoDB`).
+(when using MySQL or MariaDB, the default is `ENGINE=InnoDB`).
### Creating a Join Table
@@ -970,7 +970,7 @@ this, then you should set the schema format to `:sql`.
Instead of using Active Record's schema dumper, the database's structure will
be dumped using a tool specific to the database (via the `db:structure:dump`
rails task) into `db/structure.sql`. For example, for PostgreSQL, the `pg_dump`
-utility is used. For MySQL, this file will contain the output of
+utility is used. For MySQL and MariaDB, this file will contain the output of
`SHOW CREATE TABLE` for the various tables.
Loading these schemas is simply a question of executing the SQL statements they