ectomobile/db/migrate/20211206221912_create_raspberries.rb

14 lines
264 B
Ruby
Raw Normal View History

2021-12-06 23:00:04 +00:00
# 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