mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-01 21:47:16 +00:00
13 lines
248 B
Ruby
13 lines
248 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateConnectedApps < ActiveRecord::Migration[7.0]
|
|
def change
|
|
create_table :connected_apps do |t|
|
|
t.belongs_to :enterprise, foreign_key: true
|
|
t.json :data
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|