20211209221626_create_texts.rb 252 B

123456789101112
  1. class CreateTexts < ActiveRecord::Migration[6.1]
  2. def change
  3. create_table :texts do |t|
  4. t.references :user, null: false, foreign_key: true
  5. t.string :key
  6. t.string :language
  7. t.text :text
  8. t.timestamps
  9. end
  10. end
  11. end