ぼざクリタグ広場 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.
 
 
 
 
 
 

17 lines
591 B

  1. class CreateWikiAssets < ActiveRecord::Migration[8.0]
  2. def change
  3. create_table :wiki_assets, primary_key: [:wiki_page_id, :no] do |t|
  4. t.references :wiki_page, null: false, foreign_key: true, index: false
  5. t.integer :no, null: false
  6. t.string :alt_text
  7. t.column :sha256, 'binary(32)', null: false
  8. t.references :created_by_user, null: false, foreign_key: { to_table: :users }
  9. t.timestamps
  10. end
  11. add_index :wiki_assets, [:wiki_page_id, :sha256], unique: true
  12. add_column :wiki_pages, :next_asset_no, :integer, null: false, default: 1
  13. end
  14. end