migration

This commit is contained in:
Nicolas Bally 2017-10-23 01:32:41 +02:00
parent a9a99de45f
commit a4af3b1df0
2 changed files with 7 additions and 1 deletions

View File

@ -0,0 +1,5 @@
class AddBaselineToReseauxes < ActiveRecord::Migration
def change
add_column :reseauxes, :baseline, :string
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: 20171015210925) do
ActiveRecord::Schema.define(version: 20171022211011) do
create_table "accepted_offers", force: :cascade do |t|
t.datetime "created_at", null: false
@ -914,6 +914,7 @@ ActiveRecord::Schema.define(version: 20171015210925) do
t.integer "logo_image_file_id", limit: 4
t.integer "background_image_file_id", limit: 4
t.string "title", limit: 255
t.string "baseline", limit: 255
end
create_table "sessions", force: :cascade do |t|