add migration file for creating blockchain_project_clients table
This commit is contained in:
parent
ba5c803c44
commit
3d4cfccab5
|
@ -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
|
Loading…
Reference in New Issue