Add after_party
This commit is contained in:
parent
5339ee43f5
commit
c67f8dcaaa
7 changed files with 33 additions and 0 deletions
7
db/migrate/20180718133126_create_task_records.rb
Normal file
7
db/migrate/20180718133126_create_task_records.rb
Normal file
|
@ -0,0 +1,7 @@
|
|||
class CreateTaskRecords < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
create_table :task_records, id: false do |t|
|
||||
t.string :version, null: false
|
||||
end
|
||||
end
|
||||
end
|
|
@ -548,6 +548,10 @@ ActiveRecord::Schema.define(version: 2018_08_27_111451) do
|
|||
t.index ["administrateur_id"], name: "index_services_on_administrateur_id"
|
||||
end
|
||||
|
||||
create_table "task_records", id: false, force: :cascade do |t|
|
||||
t.string "version", null: false
|
||||
end
|
||||
|
||||
create_table "types_de_champ", id: :serial, force: :cascade do |t|
|
||||
t.string "libelle"
|
||||
t.string "type_champ"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue