Skip to content
Snippets Groups Projects
Verified Commit c86d3f19 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Fix schema and migration for postgres

parent 0d06c651
No related branches found
No related tags found
No related merge requests found
class IncreateTraceColunmLimit < ActiveRecord::Migration
def up
change_column :builds, :trace, :text, :limit => 4294967295
change_column :builds, :trace, :text, :limit => 1073741823
end
 
def down
Loading
Loading
Loading
Loading
@@ -18,7 +18,7 @@ ActiveRecord::Schema.define(:version => 20131023103430) do
t.string "ref"
t.string "status"
t.datetime "finished_at"
t.text "trace", :limit => 2147483647
t.text "trace", :limit => 1073741823
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
t.string "sha"
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment