mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-22 14:49:38 +02:00
8 lines
166 B
Ruby
8 lines
166 B
Ruby
|
class CreateAccountProperties < ActiveRecord::Migration[7.2]
|
||
|
def change
|
||
|
create_table :account_properties, id: :uuid do |t|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|