You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
255 B
11 lines
255 B
5 years ago
|
class CreateShixunSecretRepositories < ActiveRecord::Migration[5.2]
|
||
|
def change
|
||
|
create_table :shixun_secret_repositories do |t|
|
||
|
t.references :shixun
|
||
|
t.string :repo_name
|
||
|
t.string :secret_dir_path
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|