このコミットが含まれているのは:
2025-02-27 22:09:51 +09:00
コミット c6deba7c26
4個のファイルの変更120行の追加4行の削除
+12
ファイルの表示
@@ -0,0 +1,12 @@
class CreatePosts < ActiveRecord::Migration[7.0]
def change
create_table :posts do |t|
t.string :url, limit: 2000, null: false
t.string :thumbnail, limit: 255, null: false
t.string :thumbnail_base, limit: 2000, null: false
t.references :post, foreign_key: { to_table: :posts }
t.references :uploaded_by, foreign_key: { to_table: :users }
t.timestamps
end
end
end