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

  1. class CreateWikiLines < ActiveRecord::Migration[7.0]
  2. def change
  3. create_table :wiki_lines do |t|
  4. t.string :sha256, null: false, limit: 64
  5. t.text :body, null: false
  6. t.timestamps
  7. end
  8. add_index :wiki_lines, :sha256, unique: true
  9. end
  10. end