mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-02 21:57:17 +00:00
11 lines
217 B
Ruby
11 lines
217 B
Ruby
class CreateTrackers < ActiveRecord::Migration
|
|
def change
|
|
create_table :trackers do |t|
|
|
t.string :environment, :analytics_id
|
|
t.boolean :active, :default => true
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|