mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 03:57:52 +00:00
7 lines
192 B
Ruby
7 lines
192 B
Ruby
class Notnullableusers < ActiveRecord::Migration[5.0]
|
|
def change
|
|
change_column :users, :name, :string, null: false
|
|
change_column :users, :account_id, :integer, null: false
|
|
end
|
|
end
|