Sha256: 972c795788fdd5ac09f8d3cc2d957841f28568c6d054dceaceb680b213f5fb60
Contents?: true
Size: 545 Bytes
Versions: 7
Compression:
Stored size: 545 Bytes
Contents
# frozen_string_literal: true ActiveRecord::Schema.define do create_table :test_myisam, options: 'ENGINE=MyISAM', force: true do |t| t.column :my_name, :string, null: false t.column :description, :string end create_table :test_innodb, options: 'ENGINE=InnoDb', force: true do |t| t.column :my_name, :string, null: false t.column :description, :string end create_table :test_memory, options: 'ENGINE=Memory', force: true do |t| t.column :my_name, :string, null: false t.column :description, :string end end
Version data entries
7 entries across 7 versions & 1 rubygems