ぼざクリ タグ広場 https://hub.nizika.monster
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
406 B

  1. class CreateWikiPages < ActiveRecord::Migration[7.0]
  2. def change
  3. create_table :wiki_pages do |t|
  4. t.string :title, limit: 255, null: false
  5. t.references :tag, foreign_key: { to_table: :tags }
  6. t.references :created_user, null: false, foreign_key: { to_table: :users }
  7. t.references :updated_user, null: false, foreign_key: { to_table: :users }
  8. t.timestamps
  9. end
  10. end
  11. end