#64 バックエンドぼちぼち

このコミットが含まれているのは:
2025-10-09 23:47:08 +09:00
コミット 915ebcc7cf
5個のファイルの変更71行の追加1行の削除
+9
ファイルの表示
@@ -0,0 +1,9 @@
class CreateTagImplications < ActiveRecord::Migration[8.0]
def change
create_table :tag_implications do |t|
t.references :tag, null: false, foreign_key: { to_table: :tags }
t.references :parent_tag, null: false, foreign_key: { to_table: :tags }
t.timestamps
end
end
end