新增:项目数据集模型

This commit is contained in:
2024-04-01 15:24:34 +08:00
parent 81e916889e
commit 0a13387c1c
5 changed files with 35 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
class CreateProjectDatasets < ActiveRecord::Migration[5.2]
def change
create_table :project_datasets do |t|
t.string :title
t.text :description
t.references :project
t.timestamps
end
end
end