add migration file for creating blockchain_project_clients table

This commit is contained in:
nigel007 2019-07-25 11:08:22 +08:00
parent ba5c803c44
commit 3d4cfccab5
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
class CreateBlockchainProjectClients < ActiveRecord::Migration
def change
create_table :blockchain_project_clients do |t|
t.references :project
t.references :user
t.string :node_id
t.timestamps
end
end
end