Sha256: ec8f590f899e1bc6329d3632a8153d27c53e751f29ec7f521381c54a28def418
Contents?: true
Size: 524 Bytes
Versions: 11
Compression:
Stored size: 524 Bytes
Contents
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
11 entries across 11 versions & 2 rubygems