11 lines
255 B
11 lines
255 B
6 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
|