mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 11:44:02 +00:00
14 lines
294 B
Ruby
14 lines
294 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateTargets < ActiveRecord::Migration
|
|
def change
|
|
create_table :targets do |t|
|
|
t.integer :conference_id
|
|
t.integer :campaign_id
|
|
t.date :due_date
|
|
t.integer :target_count
|
|
t.string :unit
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|