FIX 完善devops流程

This commit is contained in:
Jasder
2020-07-14 15:06:09 +08:00
parent e74bba9092
commit 6527603e24
21 changed files with 1080 additions and 2619 deletions
@@ -0,0 +1,11 @@
class CreateDevOpsLanguages < ActiveRecord::Migration[5.2]
def change
create_table :dev_ops_languages do |t|
t.string :name, null: false, comment: 'The name of project language.'
t.text :content, null: false, comment: 'The content of project language.'
t.integer :usage_amount, default: 0, comment: 'number of people Using the language'
t.timestamps
end
end
end