Sha256: f3cd8718fe9a2897780fb1b36467b10191085ef9dbf767ef2cfcd1304ba094fa
Contents?: true
Size: 366 Bytes
Versions: 19
Compression:
Stored size: 366 Bytes
Contents
class CreateAlchemyPictureDescriptions < ActiveRecord::Migration[7.0] def change create_table :alchemy_picture_descriptions do |t| t.belongs_to :picture, null: false, foreign_key: {to_table: :alchemy_pictures} t.belongs_to :language, null: false, foreign_key: {to_table: :alchemy_languages} t.text :text t.timestamps end end end
Version data entries
19 entries across 19 versions & 1 rubygems