rating/spec/support/db/migrate/create_authors_table.rb

10 lines
185 B
Ruby

# 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