From fd2230e1bf428ee694901580b2b7a5992e341519 Mon Sep 17 00:00:00 2001 From: Jasder <2053003901@@qq.com> Date: Thu, 19 Dec 2019 20:46:11 +0800 Subject: [PATCH] ADD license_id and ignore_id to projects table --- ...191219091650_add_license_id_and_ignore_id_to_projects.rb | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 db/migrate/20191219091650_add_license_id_and_ignore_id_to_projects.rb diff --git a/db/migrate/20191219091650_add_license_id_and_ignore_id_to_projects.rb b/db/migrate/20191219091650_add_license_id_and_ignore_id_to_projects.rb new file mode 100644 index 000000000..0642818dc --- /dev/null +++ b/db/migrate/20191219091650_add_license_id_and_ignore_id_to_projects.rb @@ -0,0 +1,6 @@ +class AddLicenseIdAndIgnoreIdToProjects < ActiveRecord::Migration[5.2] + def change + add_column :projects, :license_id, :integer + add_column :projects, :ignore_id, :integer + end +end