From 464e68878f9e02a81d9c812eca6b464e2c1ff6f9 Mon Sep 17 00:00:00 2001 From: luke Date: Wed, 30 May 2007 14:24:41 +0000 Subject: Changing the resource title to be text instead of a string, because some title are > 255 chars git-svn-id: https://reductivelabs.com/svn/puppet/trunk@2539 980ebf18-57e1-0310-9a29-db15c13687c0 --- lib/puppet/rails/database/schema.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/puppet/rails/database') diff --git a/lib/puppet/rails/database/schema.rb b/lib/puppet/rails/database/schema.rb index c7941184a..f8960f2d0 100644 --- a/lib/puppet/rails/database/schema.rb +++ b/lib/puppet/rails/database/schema.rb @@ -7,7 +7,7 @@ class Puppet::Rails::Schema $stdout = File.open("/dev/null", "w") ActiveRecord::Schema.define do create_table :resources do |t| - t.column :title, :string, :null => false + t.column :title, :text, :null => false t.column :restype, :string, :null => false t.column :host_id, :integer t.column :source_file_id, :integer -- cgit