Sha256: f678e394d68195644eb1ac60868b96d95b410954e0fbe840519f04045ddc2aff
Contents?: true
Size: 265 Bytes
Versions: 1
Compression:
Stored size: 265 Bytes
Contents
# frozen_string_literal: true class CreateUsersTable < ActiveRecord::Migration[5.2] def change create_table :users do |table| table.column :uuid, :integer table.column :first_name, :string table.column :last_name, :string end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
praxis-2.0.pre.10 | tasks/thor/templates/generator/example_app/db/migrate/20201010101010_create_users_table.rb |