mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-01 21:47:16 +00:00
12 lines
214 B
Ruby
12 lines
214 B
Ruby
class CreateLogEntries < ActiveRecord::Migration
|
|
def change
|
|
create_table :log_entries do |t|
|
|
t.integer :source_id
|
|
t.string :source_type
|
|
t.text :details
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|