##// END OF EJS Templates
Changed 'versions' table creation to allow null values for 'effective_date' field....
Jean-Philippe Lang -
r608:9f0ddb89a0ba
parent child
Show More
@@ -214,7 +214,7 class Setup < ActiveRecord::Migration
214 t.column "project_id", :integer, :default => 0, :null => false
214 t.column "project_id", :integer, :default => 0, :null => false
215 t.column "name", :string, :limit => 30, :default => "", :null => false
215 t.column "name", :string, :limit => 30, :default => "", :null => false
216 t.column "description", :string, :default => ""
216 t.column "description", :string, :default => ""
217 t.column "effective_date", :date, :null => false
217 t.column "effective_date", :date
218 t.column "created_on", :timestamp
218 t.column "created_on", :timestamp
219 t.column "updated_on", :timestamp
219 t.column "updated_on", :timestamp
220 end
220 end
General Comments 0
You need to be logged in to leave comments. Login now