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

13 lines
411 B

  1. class CreatePosts < ActiveRecord::Migration[7.0]
  2. def change
  3. create_table :posts do |t|
  4. t.string :url, limit: 2000, null: false
  5. t.string :thumbnail, limit: 255, null: false
  6. t.string :thumbnail_base, limit: 2000, null: false
  7. t.references :post, foreign_key: { to_table: :posts }
  8. t.references :uploaded_by, foreign_key: { to_table: :users }
  9. t.timestamps
  10. end
  11. end
  12. end