API de comptabilité horaire.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20210413142821_create_activities.rb 314B

123456789101112
  1. class CreateActivities < ActiveRecord::Migration[6.1]
  2. def change
  3. create_table :activities do |t|
  4. t.string :name, index: true, null: false
  5. t.string :client
  6. t.string :description
  7. t.references :author, null: false, foreign_key: { to_table: :users }
  8. t.timestamps
  9. end
  10. end
  11. end