27 lines
500 B
MySQL
27 lines
500 B
MySQL
|
|
INSERT INTO
|
||
|
|
companies (
|
||
|
|
id,
|
||
|
|
legal_name,
|
||
|
|
trade_name,
|
||
|
|
tin,
|
||
|
|
slug,
|
||
|
|
email,
|
||
|
|
phone,
|
||
|
|
website,
|
||
|
|
status,
|
||
|
|
created_at,
|
||
|
|
updated_at
|
||
|
|
)
|
||
|
|
VALUES (
|
||
|
|
'5e4dc5b3-96b9-4968-9490-14bd032fec5f',
|
||
|
|
'Rodax Software S.L.',
|
||
|
|
'Rodax',
|
||
|
|
NULL,
|
||
|
|
'rodax',
|
||
|
|
'admin@local.test',
|
||
|
|
NULL,
|
||
|
|
NULL,
|
||
|
|
'active',
|
||
|
|
'2026-07-06 13:12:33.000',
|
||
|
|
'2026-07-06 13:12:33.000'
|
||
|
|
);
|