Sha256: c7e42b4d11c4369676efd6912d4f179478976dd7cd5f8cb2d163599efcba5022

Contents?: true

Size: 181 Bytes

Versions: 6

Compression:

Stored size: 181 Bytes

Contents

# frozen_string_literal: true

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

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
rating-0.2.0 spec/support/db/migrate/create_users_table.rb
rating-0.1.0 spec/support/db/migrate/create_users_table.rb
attachy-0.4.1 spec/support/db/migrate/create_users_table.rb
attachy-0.4.0 spec/support/db/migrate/create_users_table.rb
attachy-0.3.0 spec/support/db/migrate/create_users_table.rb
attachy-0.2.0 spec/support/db/migrate/create_users_table.rb