forked from cybrespace/mastodon
		
	Fix spoiler_text not having "not null" constraint
This commit is contained in:
		
							parent
							
								
									51a7047367
								
							
						
					
					
						commit
						0430f7c0fa
					
				
					 2 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -1,5 +1,5 @@
 | 
				
			||||||
class AddSpoilerTextToStatuses < ActiveRecord::Migration[5.0]
 | 
					class AddSpoilerTextToStatuses < ActiveRecord::Migration[5.0]
 | 
				
			||||||
  def change
 | 
					  def change
 | 
				
			||||||
    add_column :statuses, :spoiler_text, :text, default: ""
 | 
					    add_column :statuses, :spoiler_text, :text, default: "", null: false
 | 
				
			||||||
  end
 | 
					  end
 | 
				
			||||||
end
 | 
					end
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -196,7 +196,7 @@ ActiveRecord::Schema.define(version: 20170125145934) do
 | 
				
			||||||
    t.integer  "visibility",             default: 0,     null: false
 | 
					    t.integer  "visibility",             default: 0,     null: false
 | 
				
			||||||
    t.integer  "in_reply_to_account_id"
 | 
					    t.integer  "in_reply_to_account_id"
 | 
				
			||||||
    t.integer  "application_id"
 | 
					    t.integer  "application_id"
 | 
				
			||||||
    t.text     "spoiler_text",           default: ""
 | 
					    t.text     "spoiler_text",           default: "",    null: false
 | 
				
			||||||
    t.index ["account_id"], name: "index_statuses_on_account_id", using: :btree
 | 
					    t.index ["account_id"], name: "index_statuses_on_account_id", using: :btree
 | 
				
			||||||
    t.index ["in_reply_to_id"], name: "index_statuses_on_in_reply_to_id", using: :btree
 | 
					    t.index ["in_reply_to_id"], name: "index_statuses_on_in_reply_to_id", using: :btree
 | 
				
			||||||
    t.index ["reblog_of_id"], name: "index_statuses_on_reblog_of_id", using: :btree
 | 
					    t.index ["reblog_of_id"], name: "index_statuses_on_reblog_of_id", using: :btree
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue