mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-03 03:40:49 +08:00
13 lines
262 B
Ruby
13 lines
262 B
Ruby
class CreateUserTraceTasks < ActiveRecord::Migration[5.2]
|
|
def change
|
|
create_table :user_trace_tasks do |t|
|
|
t.references :user
|
|
t.references :project
|
|
t.string :branch_tag
|
|
t.string :task_id
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|