Skip to content

Commit

Permalink
Update migration
Browse files Browse the repository at this point in the history
  • Loading branch information
CuddlyBunion341 committed Oct 22, 2024
1 parent 1f8bdb6 commit 87294d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
class CreateMoiraiTranslations < ActiveRecord::Migration[7.2]
def change
create_table :moirai_translations do |t|
t.string :file_path, null: false
t.string :locale, null: false
t.string :key, null: false
t.text :value
Expand Down
2 changes: 2 additions & 0 deletions test/dummy/db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema[7.2].define(version: 2024_10_22_085549) do
ActiveRecord::Schema[7.1].define(version: 2024_10_22_085549) do
create_table "moirai_translations", force: :cascade do |t|
t.string "file_path", null: false
t.string "locale", null: false
t.string "key", null: false
t.text "value"
Expand Down

0 comments on commit 87294d7

Please sign in to comment.