From 20ea251cabb4b4b4277883ee8e72faa9e373bc9d Mon Sep 17 00:00:00 2001 From: huang Date: Thu, 31 Mar 2016 14:01:09 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- db/migrate/20160331060004_add_type_to_organization.rb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 db/migrate/20160331060004_add_type_to_organization.rb diff --git a/db/migrate/20160331060004_add_type_to_organization.rb b/db/migrate/20160331060004_add_type_to_organization.rb new file mode 100644 index 000000000..e9313433b --- /dev/null +++ b/db/migrate/20160331060004_add_type_to_organization.rb @@ -0,0 +1,5 @@ +class AddTypeToOrganization < ActiveRecord::Migration + def change + add_column :organizations, :type, :integer, :default => true + end +end