Add description publishing prices column to budgets table

This commit is contained in:
Bertocq
2018-01-10 01:11:13 +01:00
parent 922318b978
commit 6772f94c14
2 changed files with 7 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
class AddPublishingPricesPhaseToBudget < ActiveRecord::Migration
def change
add_column :budgets, :description_publishing_prices, :text
end
end

View File

@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20180108182839) do
ActiveRecord::Schema.define(version: 20180109175851) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -202,6 +202,7 @@ ActiveRecord::Schema.define(version: 20180108182839) do
t.text "description_finished"
t.string "slug"
t.text "description_drafting"
t.text "description_publishing_prices"
end
create_table "campaigns", force: :cascade do |t|