ectomobile/db/migrate/20211206221912_create_raspberries.rb
2021-12-06 20:01:05 -03:00

14 lines
264 B
Ruby

# frozen_string_literal: true
class CreateRaspberries < ActiveRecord::Migration[6.1]
def change
enable_extension :pgcrypto
create_table :raspberries, id: :uuid do |t|
t.timestamps
t.string :name
t.string :public_key
end
end
end