add use_blockchain column into table: projects

This commit is contained in:
nigel007 2020-12-30 16:14:27 +08:00
parent da9d268e04
commit 213c24892d
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
class AddUseBlockchainToProjects < ActiveRecord::Migration[5.2]
def change
add_column :projects, :use_blockchain, :boolean, default: 0
end
end