Websites/db/migrate/20231113021606_create_api_users.rb

13 lines
275 B
Ruby
Raw Normal View History

2024-05-03 03:04:43 +00:00
# frozen_string_literal: true
class CreateAPIUsers < ActiveRecord::Migration[7.1]
def change
create_table(:api_users) do |t|
t.integer(:level, null: false)
t.string(:name, null: false)
t.string(:last_avatar_hash)
t.timestamps
end
end
end