Sha256: aec3fac83df27548e79bc118a4f10c85832d54d9d5824b4e5458cb2b287cb365

Contents?: true

Size: 185 Bytes

Versions: 10

Compression:

Stored size: 185 Bytes

Contents

# frozen_string_literal: true

class CreateAuthorsTable < ActiveRecord::Migration[5.0]
  def change
    create_table :authors do |t|
      t.string :name, null: false
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
rating-0.11.0 spec/support/db/migrate/create_authors_table.rb
rating-0.10.0 spec/support/db/migrate/create_authors_table.rb
rating-0.9.0 spec/support/db/migrate/create_authors_table.rb
rating-0.8.0 spec/support/db/migrate/create_authors_table.rb
rating-0.7.0 spec/support/db/migrate/create_authors_table.rb
rating-0.6.0 spec/support/db/migrate/create_authors_table.rb
rating-0.5.0 spec/support/db/migrate/create_authors_table.rb
rating-0.4.0 spec/support/db/migrate/create_authors_table.rb
rating-0.3.0 spec/support/db/migrate/create_authors_table.rb
rating-0.2.0 spec/support/db/migrate/create_authors_table.rb