Sha256: 983f14eac2fb01d6db9785b0bf47517c20fb5ab37f7099105834d46daf8ffc62
Contents?: true
Size: 339 Bytes
Versions: 4
Compression:
Stored size: 339 Bytes
Contents
class CreateReviews < ActiveRecord::Migration[7.0] def change create_table :reviews do |t| t.text :body, null:false t.references :restaurant, null:false, index:true, foreign_key:{to_table: :restaurants} t.references :user, null:false, index:true, foreign_key:{to_table: :users} t.timestamps end end end
Version data entries
4 entries across 4 versions & 1 rubygems