Sha256: 7b8a87be9046de97a582677c9ff2e0661bdfcba7e76c49fd427b65f73397235c
Contents?: true
Size: 249 Bytes
Versions: 8
Compression:
Stored size: 249 Bytes
Contents
# frozen_string_literal: true class CreateAuthors < ActiveRecord::VERSION::MAJOR >= 5 ? ActiveRecord::Migration[5.0] : ActiveRecord::Migration def change create_table :authors do |t| t.string :name t.timestamps end end end
Version data entries
8 entries across 8 versions & 1 rubygems