Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
807 changes: 771 additions & 36 deletions _translations/po/es/guide_databases_db-migrations.md.po

Large diffs are not rendered by default.

34 changes: 17 additions & 17 deletions _translations/po/es/guide_start_databases.md.po
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2025-12-27 06:04+0000\n"
"POT-Creation-Date: 2025-12-27 06:16+0000\n"
"PO-Revision-Date: 2025-09-04 11:19+0500\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
Expand All @@ -16,6 +16,22 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"

#. type: Fenced code block (sh)
#: ../src/guide/databases/db-migrations.md ../src/guide/start/databases.md
#, no-wrap
msgid "make composer require yiisoft/db-migration\n"
msgstr ""

#. type: Fenced code block (php)
#: ../src/guide/databases/db-migrations.md ../src/guide/start/databases.md
#, no-wrap
msgid ""
"'yiisoft/db-migration' => [\n"
" 'newMigrationNamespace' => 'App\\\\Migration',\n"
" 'sourceNamespaces' => ['App\\\\Migration'],\n"
"],\n"
msgstr ""

#. type: Title #
#: ../src/guide/index.md ../src/guide/start/databases.md
#, no-wrap
Expand Down Expand Up @@ -252,27 +268,11 @@ msgstr ""
msgid "To use migrations we need another package installed:"
msgstr ""

#. type: Fenced code block (sh)
#: ../src/guide/start/databases.md
#, no-wrap
msgid "make composer require yiisoft/db-migration\n"
msgstr ""

#. type: Plain text
#: ../src/guide/start/databases.md
msgid "Create a directory to store migrations `src/Migration` right in the project root. Add the following configuration to `config/common/params.php`:"
msgstr ""

#. type: Fenced code block (php)
#: ../src/guide/start/databases.md
#, no-wrap
msgid ""
"'yiisoft/db-migration' => [\n"
" 'newMigrationNamespace' => 'App\\\\Migration',\n"
" 'sourceNamespaces' => ['App\\\\Migration'],\n"
"],\n"
msgstr ""

#. type: Plain text
#: ../src/guide/start/databases.md
msgid "Now you can use `make yii migrate:create page` to create a new migration. For our example we need a `page` table with some columns:"
Expand Down
Loading